body {
  font-family: 'Inter', sans-serif;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Calendar Styles */
.calendar-day {
  padding: 0.5rem;
  min-height: 40px;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-day:not(.disabled):hover {
  background-color: #bfdbfe;
  cursor: pointer;
}
.calendar-day.selected {
  background-color: #1d4ed8;
  color: white;
  font-weight: bold;
  box-shadow: 0 0 0 2px #3b82f6;
}
.calendar-day.range {
  background-color: #bfdbfe;
  color: #1e3a8a;
}
.calendar-day.disabled {
  color: #9ca3af;
  background-color: #f9fafb;
  cursor: not-allowed;
}
.calendar-day.reserved {
  background-color: #fee2e2;
  color: #b91c1c;
  cursor: not-allowed;
  text-decoration: line-through;
}
.form-step {
  transition: opacity 0.5s ease-in-out;
}
