/* ====== PHASED FORM - Additional Styles ====== */

/* Radio Card with Icon */
.radio-card-with-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background-color: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-card-with-icon:hover {
  background-color: #f0fdf4;
  border-color: #10b981;
  transform: scale(1.02);
}

.radio-card-with-icon:has(input:checked) {
  background-color: #f0fdf4;
  border-color: #10b981;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2);
}

.radio-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.radio-card-icon svg {
  width: 24px;
  height: 24px;
  color: #10b981;
}

.radio-card-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  flex: 1;
}

/* Standard Radio Container */
.standard-radio-container {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.standard-radio-container:hover {
  background-color: #f0fdf4;
  border-color: #10b981;
}

.standard-radio-container:has(input:checked) {
  background-color: #f0fdf4;
  border-color: #10b981;
}

/* ====== SELECT PLACEHOLDER COLOR ====== */
/* Style the select element itself */
select {
  color: #1f2937 !important; /* Normal text color */
}

/* Style the first option (placeholder) to be grey */
select option[value=""] {
  color: #9ca3af !important; /* Grey placeholder color */
  font-style: italic !important;
}

/* Ensure all other options have normal text color */
select option:not([value=""]) {
  color: #1f2937 !important;
}

/* For better browser compatibility */
select:invalid {
  color: #9ca3af !important;
}

select:valid {
  color: #1f2937 !important;
}

/* State Dropdown */
#state-dropdown {
  z-index: 50;
  max-height: 200px;
  overflow-y: auto;
}

#state-dropdown div {
  transition: background-color 0.15s ease;
}

#state-dropdown div:hover {
  background-color: #f9fafb;
}

/* Form Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* step-container transitions are handled by JS transitionStepContent() */

/* Mobile Optimizations */
@media (max-width: 640px) {
  .radio-card-with-icon,
  .standard-radio-container {
    padding: 14px;
  }

  .radio-card-icon {
    width: 36px;
    height: 36px;
  }

  .radio-card-label {
    font-size: 14px;
  }

  #btn-next,
  #btn-submit,
  #btn-back {
    width: 100%;
    justify-content: center;
  }

  .flex.items-center.justify-between {
    flex-direction: column;
    gap: 12px;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 3px solid #34d399;
  outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ====== STEP SLIDE TRANSITIONS ====== */
#step-container {
  position: relative;
}

.step-slide {
  will-change: transform, opacity;
}

/* Progress bar animation */
#progress-bar {
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade in form elements — uses animation only (no base opacity:0)
   so dynamically added/modified elements stay visible */
.step-slide .step-header,
.step-slide .space-y-6 > *,
.step-slide .radio-card-with-icon,
.step-slide .calendar-container {
  animation: fadeInUp 0.3s ease-out;
}

.step-slide .space-y-6 > *:nth-child(2) {
  animation-delay: 0.05s;
}

.step-slide .space-y-6 > *:nth-child(3) {
  animation-delay: 0.1s;
}

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

/* ====== STATE DROPDOWN - Compact Searchable ====== */
#state-dropdown-list {
  max-height: 200px !important;
  overflow-y: auto !important;
  z-index: 100 !important;
}

#state-dropdown-list div {
  transition: background-color 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#state-dropdown-list div:hover {
  background-color: #f9fafb !important;
}

#state-dropdown-list div svg {
  transition: opacity 0.15s ease;
}

#state-dropdown-list div:hover svg {
  opacity: 1 !important;
}

/* Custom scrollbar for dropdown */
#state-dropdown-list::-webkit-scrollbar {
  width: 6px;
}

#state-dropdown-list::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 3px;
}

#state-dropdown-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

#state-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* ====== STATE DROPDOWN - Enhanced Hover & Selected States ====== */

/* Hover effect - Greenish background */
#state-dropdown-list div[data-state-code] {
  transition: all 0.15s ease !important;
  cursor: pointer !important;
  position: relative !important;
}

#state-dropdown-list div[data-state-code]:hover {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%) !important;
  border-left: 3px solid #10b981 !important;
  padding-left: 13px !important; /* Compensate for border */
  transform: translateX(2px) !important;
}

#state-dropdown-list div[data-state-code]:hover strong {
  color: #059669 !important;
}

/* Selected state - Clear visual indicator */
#state-dropdown-list div[data-state-code].selected {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
  border-left: 4px solid #059669 !important;
  padding-left: 12px !important;
  font-weight: 600 !important;
}

#state-dropdown-list div[data-state-code].selected strong {
  color: #047857 !important;
  font-weight: 700 !important;
}

#state-dropdown-list div[data-state-code].selected::after {
  content: "✓" !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #059669 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Search input when state is selected */
#state-search-input.state-selected {
  border-color: #10b981 !important;
  background-color: #f0fdf4 !important;
  font-weight: 600 !important;
  color: #065f46 !important;
}

#state-search-input.state-selected::placeholder {
  color: #059669 !important;
  opacity: 0.8 !important;
}

/* Animation for selection feedback */
@keyframes pulseGreen {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

#state-search-input.state-selected {
  animation: pulseGreen 0.6s ease-out !important;
}

/* ====== BOOK APPOINTMENT BUTTON - Special Styling ====== */
#btn-submit {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%) !important;
  color: #ffffff !important;
  font-size: 16px !important;
  padding: 14px 40px !important;
  box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4) !important;
  animation: pulse 2s infinite !important;
}

#btn-submit:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%) !important;
  transform: scale(1.05) !important;
  box-shadow: 0 15px 30px -5px rgba(5, 150, 105, 0.5) !important;
}

#btn-submit:active {
  transform: scale(0.98) !important;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 10px 25px -5px rgba(5, 150, 105, 0.4);
  }
  50% {
    box-shadow: 0 15px 30px -5px rgba(5, 150, 105, 0.6);
  }
}

/* Mobile: Remove animation for performance */
@media (prefers-reduced-motion: reduce) {
  #btn-submit {
    animation: none !important;
  }
}

/* ====== OTP VERIFICATION - Compact & Improved ====== */

/* Verification Container - More Compact */
.verification-container {
  background-color: #f0fdf4 !important;
  border: 2px solid #10b981 !important;
  border-radius: 12px !important;
  padding: 12px 16px !important; /* Reduced from 16px */
  margin-top: 12px !important;
}

.verification-container p {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 13px !important; /* Reduced from 14px */
  font-weight: 400 !important;
  color: #374151 !important;
  line-height: 1.5 !important;
  margin: 0 0 10px 0 !important; /* Reduced margin */
}

.verification-container p b {
  font-weight: 600 !important;
  color: #059669 !important;
}

/* OTP Input Field - More Compact */
.verification-container input[type="text"],
.verification-container input.otp {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 18px !important; /* Reduced from 20px */
  font-weight: 600 !important;
  color: #1f2937 !important;
  background-color: #ffffff !important;
  padding: 10px 16px !important; /* Reduced from 12px */
  border: 2px solid #e5e7eb !important;
  border-radius: 10px !important; /* Reduced from 12px */
  transition: all 0.2s ease !important;
  width: 100% !important;
  max-width: 200px !important; /* Limit width */
  box-sizing: border-box !important;
  text-align: center !important;
  letter-spacing: 6px !important;
  margin: 0 auto 12px auto !important; /* Center with reduced margin */
  display: block !important;
}

.verification-container input[type="text"]:focus,
.verification-container input.otp:focus {
  outline: none !important;
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

.verification-container input.otp::placeholder {
  color: #9ca3af !important;
  font-size: 16px !important;
  letter-spacing: 4px !important;
}

/* Button Container - Compact Layout */
.verification-container .button-container {
  display: flex !important;
  gap: 8px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

/* Confirm Code Button - More Compact */
.confirm-btn {
  background-color: #34d399 !important;
  color: #064e3b !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 13px !important; /* Reduced from 14px */
  font-weight: 700 !important;
  padding: 10px 20px !important; /* Reduced from 12px 24px */
  border-radius: 8px !important;
  border: 0px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.confirm-btn:hover {
  background-color: #10b981 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  transform: scale(1.02) !important;
}

/* Edit Phone Button - More Compact */
.reset-btn {
  background-color: #ffffff !important;
  color: #6b7280 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  border: 2px solid #e5e7eb !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
  margin: 0 !important;
  flex: 0 0 auto !important;
}

.reset-btn:hover {
  background-color: #f9fafb !important;
  color: #374151 !important;
  border-color: #d1d5db !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Resend Code Link - New */
.resend-code-link {
  display: block !important;
  text-align: center !important;
  margin-top: 10px !important;
  font-size: 13px !important;
  color: #10b981 !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  text-decoration: underline !important;
  transition: color 0.2s ease !important;
}

.resend-code-link:hover {
  color: #059669 !important;
}

/* Verified Success Message - GREEN (not red!) */
/* Ensure hidden class actually hides the element */
.verified-text.hidden {
  display: none !important;
}

/* Default state should be hidden */
.verified-text {
  display: none !important; /* Changed from flex to none */
  align-items: center !important;
  gap: 12px !important;
  background-color: #f0fdf4 !important;
  border: 2px solid #10b981 !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  margin-top: 12px !important;
}

/* Only show when not hidden */
.verified-text:not(.hidden) {
  display: flex !important;
}

/* Fix SVG icon size */
.verified-text img,
.verified-text svg {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
  max-width: 24px !important;
  max-height: 24px !important;
}

/* Ensure icon doesn't stretch */
.verified-text img {
  object-fit: contain !important;
}

.verified-text span {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #059669 !important;
  line-height: 1.5 !important;
  flex: 1 !important;
}

.verified-text span b {
  font-weight: 700 !important;
  color: #047857 !important;
}

/* Privacy/Trust Message - New */
.phone-privacy-message {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin-top: 12px !important;
  padding: 10px 14px !important;
  background-color: #f9fafb !important;
  border-radius: 8px !important;
  border: 1px solid #e5e7eb !important;
}

.phone-privacy-message svg {
  width: 18px !important;
  height: 18px !important;
  color: #10b981 !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}

.phone-privacy-message p {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 12px !important;
  color: #6b7280 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.phone-privacy-message p strong {
  color: #374151 !important;
  font-weight: 600 !important;
}

/* Mobile Adjustments */
@media (max-width: 640px) {
  .verification-container {
    padding: 12px !important;
  }

  .verification-container input[type="text"],
  .verification-container input.otp {
    max-width: 100% !important;
    font-size: 16px !important;
  }

  .verification-container .button-container {
    flex-direction: column !important;
  }

  .confirm-btn,
  .reset-btn {
    width: 100% !important;
  }

  .phone-privacy-message {
    flex-direction: column !important;
    gap: 6px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CALENDAR BOOKING - Professional UI
   ═══════════════════════════════════════════════════════════════ */

.calendar-container {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 24px !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

.calendar-section {
  margin-bottom: 24px !important;
}

.calendar-section:last-child {
  margin-bottom: 0 !important;
}

/* Days Grid */
.days-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
  gap: 12px !important;
}

@media (min-width: 640px) {
  .days-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
    gap: 16px !important;
  }
}

.calendar-day-card {
  background: #f9fafb !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 16px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

.calendar-day-card:hover {
  background: #f0fdf4 !important;
  border-color: #10b981 !important;
  transform: scale(1.03) !important;
}

.calendar-day-card.selected {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
  border-color: #059669 !important;
  box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.3) !important;
}

.calendar-day-card .day-short {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  display: block !important;
  margin-bottom: 4px !important;
}

.calendar-day-card.selected .day-short {
  color: #047857 !important;
}

.calendar-day-card .day-number {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #1f2937 !important;
  display: block !important;
  line-height: 1 !important;
}

.calendar-day-card.selected .day-number {
  color: #064e3b !important;
}

.calendar-day-card .month {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #6b7280 !important;
  display: block !important;
  margin-top: 4px !important;
}

.calendar-day-card.selected .month {
  color: #047857 !important;
}

/* Times Grid */
.times-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)) !important;
  gap: 12px !important;
}

@media (min-width: 640px) {
  .times-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important;
    gap: 16px !important;
  }
}

.calendar-time-slot {
  background: #f9fafb !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #374151 !important;
}

.calendar-time-slot:hover {
  background: #f0fdf4 !important;
  border-color: #10b981 !important;
  transform: scale(1.05) !important;
}

.calendar-time-slot.selected {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%) !important;
  border-color: #059669 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.4) !important;
}

.calendar-time-slot.unavailable {
  background: #f3f4f6 !important;
  border-color: #e5e7eb !important;
  color: #9ca3af !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}

/* Calendar Loading State */
.calendar-loading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 20px !important;
  color: #6b7280 !important;
}

.calendar-loading svg {
  width: 40px !important;
  height: 40px !important;
  color: #10b981 !important;
  margin-bottom: 12px !important;
}

.calendar-loading p {
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* Calendar Selection Summary */
#calendar-selection-summary {
  animation: slideInUp 0.4s ease-out !important;
}

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

/* Disabled Continue Button */
#btn-calendar-continue:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Mobile Optimizations */
@media (max-width: 640px) {
  .calendar-container {
    padding: 16px !important;
  }

  .days-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .calendar-day-card {
    padding: 12px 8px !important;
  }

  .calendar-day-card .day-number {
    font-size: 22px !important;
  }

  .times-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .calendar-time-slot {
    padding: 12px !important;
    font-size: 14px !important;
  }
}

/* ====== CALENDAR - Active/Selected States ====== */

/* Selected day card */
.calendar-day-card.selected,
.calendar-day-card[aria-selected="true"] {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%) !important;
  border-color: #059669 !important;
  box-shadow: 0 4px 6px -1px rgba(5, 150, 105, 0.3) !important;
  position: relative !important;
}

.calendar-day-card.selected::after {
  content: "✓" !important;
  position: absolute !important;
  top: 8px !important;
  right: 12px !important;
  color: #047857 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Selected time slot */
.calendar-time-slot.selected,
.calendar-time-slot[aria-selected="true"] {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%) !important;
  border-color: #059669 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.4) !important;
  position: relative !important;
}

.calendar-time-slot.selected::after {
  content: "✓" !important;
  position: absolute !important;
  top: 8px !important;
  right: 12px !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

/* Keep selection when navigating between day/time views */
.calendar-day-card.selected:not(:hover) {
  transform: none !important;
}

.calendar-time-slot.selected:not(:hover) {
  transform: none !important;
}

/* ====== CALENDAR FALLBACK DISCLAIMER ====== */
.calendar-fallback-notice {
  background-color: #fef3c7 !important;
  border: 2px solid #f59e0b !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  margin-bottom: 16px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.calendar-fallback-notice svg {
  width: 20px !important;
  height: 20px !important;
  color: #f59e0b !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.calendar-fallback-notice p {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 13px !important;
  color: #92400e !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.calendar-fallback-notice strong {
  font-weight: 600 !important;
  color: #78350f !important;
}

/* ====== CALENDAR CONTINUE BUTTON - Match Next Button ====== */
#btn-calendar-continue {
  background-color: #34d399 !important;
  color: #064e3b !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 12px 32px !important;
  border-radius: 12px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
  display: inline-flex;
  align-items: center !important;
  gap: 8px !important;
}

#btn-calendar-continue:hover:not(:disabled) {
  background-color: #10b981 !important;
  color: #ffffff !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
  transform: scale(1.02) !important;
}

#btn-calendar-continue:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

#btn-calendar-continue.hidden {
  display: none !important;
}

/* ====== PHONE VERIFIED STATE - Success Animation ====== */
.phone-input.verified {
  position: relative !important;
}

.phone-input.verified::after {
  content: "✓" !important;
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 24px !important;
  height: 24px !important;
  background-color: #10b981 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  animation: pulseSuccess 0.6s ease-out !important;
}

@keyframes pulseSuccess {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}

.phone-input.verified input {
  background-color: #f0fdf4 !important;
  border-color: #10b981 !important;
  cursor: not-allowed !important;
}

/* Verified message styling */
#phone-verified-message {
  animation: slideInDown 0.4s ease-out !important;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
