@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* ========================================
   Reset
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  background-color: var(--bg-main) !important;
  color: var(--text-primary);
  line-height: 1.47059;
  letter-spacing: -0.022em;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

/* ========================================
   Container
   ======================================== */
.reservation-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--bg-main);
  border-radius: 18px;
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(0, 0, 0, 0.07);
  overflow: visible;
  position: relative;
}

/* ========================================
   Header
   ======================================== */
.header {
  background: var(--gradient-primary);
  padding: 36px 32px 28px;
  text-align: center;
  color: var(--text-white);
  position: relative;
  border-radius: 18px 18px 0 0;
}

.header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.15;
}

.header p {
  font-size: 14px;
  opacity: 0.8;
  margin: 4px 0 0 0;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ========================================
   Steps
   ======================================== */
.step {
  padding: 32px;
  display: none;
  animation: stepIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step.active {
  display: block;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* ========================================
   Forms
   ======================================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
  color: var(--text-primary);
  background-color: var(--bg-main);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3.5px var(--focus-ring);
}

.form-group textarea {
  resize: vertical;
  min-height: 76px;
  line-height: 1.47;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
  line-height: 1.4;
}

/* ========================================
   Custom Dropdown (People)
   ======================================== */
.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  letter-spacing: -0.01em;
  background-color: var(--bg-main);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.custom-select-trigger:hover {
  border-color: var(--text-muted);
}

.custom-select-trigger.active {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3.5px var(--focus-ring);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.custom-select-arrow {
  width: 0;
  height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-top: 4.5px solid var(--text-muted);
  transition: transform 0.25s ease;
}

.custom-select-trigger.active .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--bg-main);
  border: 1px solid var(--theme-primary);
  border-top: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.custom-select-options.show {
  display: block;
}

.custom-select-option {
  padding: 10px 14px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  font-size: 15px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.custom-select-option:hover {
  background-color: var(--bg-light);
}

.custom-select-option.selected {
  background-color: var(--theme-primary);
  color: var(--text-white);
}

.custom-select-placeholder {
  color: var(--text-muted);
}

/* ========================================
   Time Select
   ======================================== */
#time {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" fill="none"><path d="M1 1l5 5 5-5" stroke="%2386868b" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

/* ========================================
   Custom Calendar
   ======================================== */
.custom-calendar {
  position: relative;
  width: 100%;
}

.custom-calendar-trigger {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  letter-spacing: -0.01em;
  background-color: var(--bg-main);
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
}

.custom-calendar-trigger:hover {
  border-color: var(--theme-secondary);
}

.custom-calendar-trigger.active {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 3.5px
    color-mix(in srgb, var(--theme-primary) 15%, transparent);
}

.custom-calendar-placeholder {
  color: var(--text-muted);
}

.custom-calendar-icon {
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.custom-calendar-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  z-index: 1000;
  display: none;
  padding: 16px;
  box-shadow:
    0 0 0 0.5px rgba(0, 0, 0, 0.04),
    0 8px 32px rgba(0, 0, 0, 0.12);
}

.custom-calendar-popup.show {
  display: block;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.calendar-nav {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  color: var(--theme-primary);
  border-radius: 50%;
  transition: background-color 0.15s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.calendar-nav:hover {
  background-color: var(--bg-light);
}

.calendar-month-year {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  width: 100%;
}

.calendar-weekday {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.calendar-day {
  aspect-ratio: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 13px;
  transition: all 0.15s ease;
  color: var(--text-primary);
  font-weight: 400;
}

.calendar-day:hover {
  background-color: var(--bg-light);
}

.calendar-day.disabled {
  color: var(--border-light);
  cursor: not-allowed;
}

.calendar-day.disabled:hover {
  background-color: transparent;
}

.calendar-day.selected {
  background-color: var(--theme-primary);
  color: var(--text-white);
  font-weight: 600;
}

.calendar-day.today {
  font-weight: 700;
  color: var(--theme-primary);
}

.calendar-day.today.selected {
  color: var(--text-white);
}

/* ========================================
   Buttons
   ======================================== */
.btn-primary,
.btn-secondary {
  padding: 11px 24px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: var(--theme-primary);
  color: var(--text-on-primary);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--theme-primary-dark);
  transform: scale(1.02);
}

.btn-primary:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-primary:disabled {
  cursor: not-allowed;
}

.btn-secondary {
  background-color: var(--bg-light);
  color: var(--text-primary);
  border: none;
}

.btn-secondary:hover {
  background-color: var(--border-light);
}

.btn-secondary:active {
  background-color: var(--border-light);
}

/* ========================================
   Step Actions
   ======================================== */
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 12px;
}

.step-actions--center {
  justify-content: center;
}

.step-actions .btn-primary,
.step-actions .btn-secondary {
  min-width: 140px;
}

/* ========================================
   Availability
   ======================================== */
#availabilityResults {
  margin-bottom: 20px;
}

.availability-slot {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.availability-slot:hover {
  border-color: var(--theme-primary);
  background-color: color-mix(in srgb, var(--theme-primary) 3%, transparent);
}

.availability-slot.selected {
  border-color: var(--theme-primary);
  background-color: color-mix(in srgb, var(--theme-primary) 5%, transparent);
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--theme-primary) 10%, transparent);
}

.slot-time {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.slot-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sector-option {
  background-color: var(--theme-success);
  color: var(--text-white);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ========================================
   Sector Tabs
   ======================================== */
.sector-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sector-tabs::-webkit-scrollbar {
  display: none;
}

.sector-tab {
  padding: 10px 16px;
  border: none;
  background-color: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  margin-bottom: -1px;
  letter-spacing: -0.01em;
}

.sector-tab:hover {
  color: var(--theme-primary);
}

.sector-tab.active {
  color: var(--theme-primary);
  border-bottom-color: var(--theme-primary);
  font-weight: 600;
}

.sector-content {
  min-height: 160px;
}

.sector-times h3 {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  text-align: center;
  letter-spacing: -0.02em;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.time-slot {
  background-color: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.time-slot:hover {
  border-color: var(--theme-primary);
  background-color: color-mix(in srgb, var(--theme-primary) 3%, transparent);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.time-slot.selected {
  background-color: var(--bg-success-light);
  border-color: var(--border-success);
}

.time-slot.requested {
  border-color: var(--theme-primary);
  background-color: color-mix(in srgb, var(--theme-primary) 4%, transparent);
}

.time-display {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.capacity-info {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.requested-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: var(--theme-primary);
  color: var(--text-white);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.time-notification {
  margin-top: 20px;
  padding: 14px;
  background-color: var(--bg-light);
  border: none;
  border-radius: 10px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.notification-icon {
  color: var(--theme-primary);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.notification-body {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ========================================
   Confirmation
   ======================================== */
.confirmation-content {
  text-align: center;
}

.success-badge {
  display: inline-block;
  background-color: var(--theme-success);
  color: var(--text-white);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.confirmation-content .reservation-details {
  max-width: 100%;
}

.confirmation-content .step-actions {
  justify-content: center;
}

/* ========================================
   Reservation Details
   ======================================== */
.reservation-details {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}

.reservation-details h3 {
  color: var(--text-primary);
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  letter-spacing: -0.01em;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row .label {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 13px;
}

/* ========================================
   Code Info / Countdown
   ======================================== */
.code-info {
  color: var(--text-muted);
  font-size: 13px;
  margin: 16px 0;
  text-align: center;
}

#countdown {
  font-weight: 700;
  color: var(--theme-primary);
  font-variant-numeric: tabular-nums;
}

/* ========================================
   Verification Code
   ======================================== */
#verificationCode {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 8px;
  font-family: "SF Mono", "Fira Code", "Courier New", monospace;
  padding: 14px;
}

/* ========================================
   Loading
   ======================================== */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--overlay-bg);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 18px;
}

.loading-overlay.show {
  display: flex;
}

.loading-overlay p {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 2.5px solid var(--border-light);
  border-top: 2.5px solid var(--theme-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-bottom: 12px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ========================================
   Error
   ======================================== */
.error-message {
  background-color: var(--error-bg);
  border: 1px solid var(--error-border);
  color: var(--error-text);
  padding: 10px 20px;
  border-radius: 10px;
  margin: 0 32px 16px;
  display: none;
  font-size: 13px;
  font-weight: 500;
}

.error-message.show {
  display: block;
}

/* ========================================
   No Results
   ======================================== */
.no-results {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.no-results h3 {
  color: var(--text-primary);
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
}

/* ========================================
   Sector Modal
   ======================================== */
.sector-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--modal-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.sector-modal-content {
  background-color: var(--bg-main);
  border-radius: 16px;
  padding: 28px;
  max-width: 340px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.sector-modal-content h3 {
  margin-bottom: 20px;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.sector-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.sector-btn {
  padding: 11px 20px;
  border: 1px solid var(--theme-primary);
  background-color: var(--bg-main);
  color: var(--theme-primary);
  border-radius: 10px;
  font-weight: 500;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sector-btn:hover {
  background-color: var(--theme-primary);
  color: var(--text-white);
}

.close-modal {
  padding: 8px 20px;
  border: none;
  background-color: var(--bg-light);
  color: var(--text-muted);
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background-color: var(--border-light);
  color: var(--text-primary);
}

/* ========================================
   Form Row
   ======================================== */
.form-row {
  display: flex;
  gap: 12px;
}

.form-row .form-group {
  flex: 1;
  min-width: 0;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  text-align: center;
  padding: 14px 20px;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-light);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  border-radius: 0 0 18px 18px;
}

.footer p {
  margin: 1px 0;
}

.footer a {
  color: var(--theme-primary);
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  text-decoration: underline;
}

/* ========================================
   Language Selector
   ======================================== */
.language-selector {
  position: absolute;
  top: 12px;
  left: 12px;
}

.language-select {
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  font-size: 11px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ffffff" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 7px;
  padding-right: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.language-select:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.language-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.4);
}

.language-select option {
  background-color: var(--bg-main);
  color: var(--text-primary);
}

/* ========================================
   Responsive — Tablet
   ======================================== */
@media (max-width: 768px) {
  body {
    padding: 16px;
    align-items: flex-start;
  }

  .reservation-container {
    border-radius: 14px;
  }

  .header {
    border-radius: 14px 14px 0 0;
    padding: 28px 24px 22px;
  }

  .footer {
    border-radius: 0 0 14px 14px;
  }

  .loading-overlay {
    border-radius: 14px;
  }

  .step {
    padding: 24px;
  }

  .header h1 {
    font-size: 24px;
  }

  .detail-row {
    flex-direction: column;
    gap: 2px;
  }

  .detail-row .label {
    width: auto;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .time-slot {
    padding: 10px 6px;
  }

  .error-message {
    margin: 0 24px 12px;
  }
}

/* ========================================
   Responsive — Small Mobile
   ======================================== */
@media (max-width: 480px) {
  body {
    padding: 0;
    align-items: stretch;
    background-color: var(--bg-main);
  }

  .reservation-container {
    border-radius: 0;
    min-height: 100vh;
    min-height: 100dvh;
    box-shadow: none;
  }

  .header {
    border-radius: 0;
    padding: 32px 20px 24px;
  }

  .footer {
    border-radius: 0;
  }

  .loading-overlay {
    border-radius: 0;
  }

  .step {
    padding: 24px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .step-actions {
    flex-direction: column-reverse;
    gap: 8px;
  }

  .step-actions .btn-primary,
  .step-actions .btn-secondary {
    width: 100%;
    min-width: unset;
    padding: 13px 24px;
  }

  .step-actions--center {
    flex-direction: column;
  }

  .language-selector {
    top: 10px;
    left: 10px;
  }

  .language-select {
    font-size: 10px;
    padding: 3px 8px;
    padding-right: 18px;
  }

  .header h1 {
    font-size: 22px;
  }

  .step h2 {
    font-size: 19px;
  }

  .error-message {
    margin: 0 20px 12px;
  }
}

/* ========================================
   Scrollbar
   ======================================== */
.custom-select-options::-webkit-scrollbar {
  width: 4px;
}

.custom-select-options::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 2px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-muted);
}
