/* Additional custom styles - Tailwind is loaded via CDN */

.emoji {
  font-style: normal;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .calendar-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.date-option {
  min-height: 80px;
  cursor: pointer;
  position: relative;
}

.date-option.selected {
  background: linear-gradient(135deg, #4A90E2 0%, #7AB8F5 100%);
  color: white;
  border-color: #1E90FF !important;
}

.date-option.selected .text-gray-500,
.date-option.selected .text-gray-900 {
  color: white !important;
}

.time-slot {
  transition: all 0.2s ease;
  min-height: 50px;
  cursor: pointer;
  position: relative;
}

.time-slot:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.time-slot:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: #f5f5f5;
}

.time-slot.selected {
  background: linear-gradient(135deg, #4A90E2 0%, #7AB8F5 100%);
  color: white;
  border-color: #1E90FF;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 500px;
  margin: 1rem;
  animation: scaleIn 0.3s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

html {
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 2px solid #4A90E2;
  outline-offset: 2px;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}
