body {
    font-family: "Lexend", sans-serif;  
    padding: 0px;
    color: #021c5a;
    line-height: 1.6;
  }
  .toast-container {
              position: fixed;
              top: 20px;
              right: 20px;
              z-index: 9999;
          }
          
          .toast {
              background: #333;
              color: white;
              padding: 12px 24px;
              border-radius: 4px;
              margin-bottom: 10px;
              display: flex;
              align-items: center;
              box-shadow: 0 2px 5px rgba(0,0,0,0.2);
              animation: slideIn 0.3s ease-in-out;
              max-width: 300px;
          }
          
          .toast.success {
              background: #4CAF50;
          }
          
          .toast.error {
              background: #f44336;
          }
          
          .toast i {
              margin-right: 10px;
          }
          
          @keyframes slideIn {
              from {
                  transform: translateX(100%);
                  opacity: 0;
              }
              to {
                  transform: translateX(0);
                  opacity: 1;
              }
          }
          
          @keyframes fadeOut {
              from {
                  transform: translateX(0);
                  opacity: 1;
              }
              to {
                  transform: translateX(100%);
                  opacity: 0;
              }
          }
  .app-container {
    max-width: 1400px;
    margin: 10px auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    padding: 0px 0px;
  }
  
  /* Header Styles */
  .header {
    background: linear-gradient(135deg, #22919a 0%, #3398a0 100%);
    color: white;
    padding: 30px;
    text-align: center;
  }
  
  .header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .header p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  /* Registration Container */
  .registration-container {
    display: flex;
    /* min-height: 700px; */
    position: relative;
  }
  
  /* Sidebar Styles */
  .sidebar {
    width: 280px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 15px;
    position: sticky;
    top: 0;
    /* height: 100vh; */
    overflow-y: auto;
  }
  
  .sidebar-header h3 {
    color: #021c5a;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .step-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .step-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
  }
  
  .step-item.active {
    background: linear-gradient(135deg, #22919a 0%, #3398a0 100%);
    color: white;
    border-color: #22919a;
    transform: translateX(5px);
  }
  
  .step-item.completed {
    background: #22919a;
    color: white;
  }
  
  .step-icon {
    margin-right: 15px;
    font-size: 1.2rem;
  }
  
  .step-content {
    flex: 1;
  }
  
  .step-number {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
  }
  
  .step-title {
    font-weight: 600;
    font-size: 1rem;
  }
  
  /* Form Content Area */
  .form-content {
    flex: 1;
    padding: 30px 40px;
    overflow-y: auto;
    height: 100vh;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .form-content::-webkit-scrollbar {
    display: none;
  }
  
  .form-header {
    margin-bottom: 30px;
  }
  
  .form-header h2 {
    color: #021c5a;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .progress-container {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  #stepIndicator {
    color: #666;
    font-weight: 500;
  }
  
  .progress-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background: #87AA44;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 14.28%; /* Default for step 1 */
  }
  
  /* Card Styles */
  .card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  
  .card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }
  
  .card h3 {
    color: #021c5a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .card h3 i {
    color: #22919a;
  }
  
  /* Form Elements */
  .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
  }
  
  .form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: "Lexend", sans-serif;
    transition: all 0.3s ease;
    background: white;
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    outline: none;
    border-color: #22919a;
    box-shadow: 0 0 0 3px rgba(34, 145, 154, 0.1);
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #9ca3af;
  }
  
  .form-group input.auto-filled {
    background: #f0f9ff;
    border-color: #22919a;
  }
  
  .form-group small {
    color: #6b7280;
    font-size: 0.85rem;
    margin-top: 5px;
  }
  
  /* Tabs */
  .tabs {
    margin-bottom: 20px;
  }
  
  .tab-buttons {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 20px;
    
    gap: 5px;
  }
  
  .tab-btn {
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-family: "Lexend", sans-serif;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .tab-btn:hover {
    color: #22919a;
    background: #f8fafc;
  }
  
  .tab-btn.active {
    color: #22919a;
    border-bottom-color: #22919a;
    font-weight: 600;font-family: "Lexend", sans-serif;
  }
  
  .tab-btn:disabled {
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.5;
    font-family: "Lexend", sans-serif;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  /* Mobile Input Group */
  .mobile-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .mobile-input-group input {
    flex: 1;
  }
  
  .verify-btn {
    padding: 12px 20px;
    background: #22919a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .verify-btn:hover {
    background: #1d7a82;
    transform: translateY(-1px);
  }
  
  .verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #22919a;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  .verified-badge.small {
    font-size: 0.8rem;
  }
  
  .otp-input {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }
  
  .otp-input input {
    flex: 1;
    border-color: #22919a;
  }
  
  .otp-btn {
    padding: 10px 16px;
    background: #88aa47;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
  }
  
  /* Language Selection */
  .language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }
  
  .language-item {
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
  }
  
  .language-item:hover {
    border-color: #22919a;
    background: #f0f9ff;
  }
  
  .language-item.selected {
    background: #22919a;
    color: white;
    border-color: #22919a;
  }
  
  .custom-language-input {
    display: flex;
    gap: 10px;
    font-family: "Lexend", sans-serif;
  }
  
  .custom-language-input input {
    flex: 1;
    font-family: "Lexend", sans-serif;
  }
  
  .custom-language-input button {
    padding: 12px 16px;
    background: #22919a;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .selected-languages {
    margin-top: 15px;
  }
  
  .selected-languages h4 {
    color: #374151;
    margin-bottom: 10px;
  }
  
  .language-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .language-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #22919a;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .remove-language {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 5px;
  }
  
  /* Upload Areas */
  .upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .upload-area:hover {
    border-color: #22919a;
    background: #f0f9ff;
  }
  
  .upload-area.large {
    grid-column: 1 / -1;
  }
  
  .upload-area i {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 15px;
    display: block;
  }
  
  .upload-area h4 {
    color: #374151;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .upload-area p {
    color: #6b7280;
    font-size: 0.9rem;
  }
  
  .upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  .upload-status {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
  }
  
  .upload-status.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .upload-status.success i {
    color: #22c55e;
  }
  
  .upload-status.error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .upload-status.error i {
    color: #dc2626;
  }
  
  .upload-success {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 0.375rem;
  }
  
  .upload-success i {
    color: #22c55e;
  }
  
  .upload-success span {
    flex: 1;
  }
  
  .remove-upload {
    background: none;
    border: none;
    color: #166534;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  
  .remove-upload:hover {
    background-color: #bbf7d0;
  }
  
  /* Bio Container and Enhance Button */
  .bio-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .bio-container textarea {
    width: 100%;
    resize: vertical;
  }
  
  .enhance-bio-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, #30969f 0%, #87aa44 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
  }
  
  .enhance-bio-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #87aa44 0%, #30969f 100%);
  }
  
  .enhance-bio-btn:active {
    transform: translateY(0);
  }
  
  .enhance-bio-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  .enhance-bio-btn.fallback {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    margin-left: 10px;
  }
  
  .enhance-bio-btn.fallback:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  }
  
  .enhance-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #87aa44 0%, #30969f 100%);
    border: 1px solid #f59e0b;
    border-radius: 6px;
    color: white;
    font-size: 0.875rem;
  }
  
  .enhance-notice i {
    color: #f59e0b;
  }
  
  /* Auto-fill Notice */
  .auto-fill-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22919a;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
  }
  
  .auto-fill-notice i {
    font-size: 1rem;
  }
  
  /* Awards Section */
  .awards-section {
    margin-top: 20px;
  }
  
  .awards-section label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
  }
  
  .add-award {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .add-award input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    font-family: "Lexend", sans-serif;
    border-radius: 8px;
  }
  
  .add-award button {
    padding: 10px 15px;
    background: #88aa47;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .awards-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .award-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
  }
  
  .remove-award {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.8rem;
  }
  
  /* Clinic Sections */
  .clinic-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .clinic-notice.primary {
    background: linear-gradient(135deg, hsl(80, 33%, 61%) 0%, #23939E 100%);
  }
  
  .clinic-notice.secondary {
    background: linear-gradient(135deg, hsl(80, 33%, 61%) 0%, #23939E 100%);
  }
  
  .clinic-notice i {
    font-size: 1.5rem;
    color: #fff;
  }
  
  .clinic-notice.secondary i {
    color: #fff;
  }
  
  .clinic-notice strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
  }
  
  .clinic-notice p {
    color: #fff;
    margin: 0;
  }
  
  .add-clinic-form {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  
  .map-input-group {
    position: relative;
  }
  
  .map-status {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
  }
  
  .map-status.success {
    color: #23939E;
  }
  
  .map-status.error {
    color: #ef4444;
  }
  
  .map-extracting {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #23939E;
    font-size: 0.9rem;
    margin-top: 8px;
  }
  
  .add-clinic-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, hsl(80, 33%, 61%) 0%, #23939E 100%);  color: white;
    border: none;
    border-radius: 10px;
    margin-top: 15px;
    font-family: "Lexend", sans-serif;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .add-clinic-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(34, 145, 154, 0.3);
  }
  
  .add-clinic-btn.secondary {
    background: linear-gradient(135deg, hsl(80, 33%, 61%) 0%, #23939E 100%);  color: white;
  }
  
  .clinics-list {
    margin-top: 20px;
  }
  
  .clinic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  .clinic-item.primary {
    border-color: #f59e0b;
    background: #fffbf0;
  }
  
  .clinic-item.secondary {
    border-color: #3b82f6;
    background: #f0f8ff;
  }
  
  .clinic-info h4 {
    color: #374151;
    margin-bottom: 5px;
  }
  
  .clinic-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
  }
  
  .clinic-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
  }
  
  .clinic-badge.primary {
    background: #f59e0b;
    color: white;
  }
  
  .clinic-badge.secondary {
    background: #3b82f6;
    color: white;
  }
  
  .remove-clinic {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.8rem;
  }
  
  .clinic-limit-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fee2e2;
    border: 2px solid #ef4444;
    border-radius: 10px;
    margin-top: 20px;
  }
  
  .clinic-limit-notice i {
    color: #ef4444;
    font-size: 1.5rem;
  }
  
  .clinic-summary {
    margin-top: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
  }
  
  .clinic-summary h4 {
    color: #374151;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }
  
  .summary-item {
    text-align: center;
  }
  
  .count {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .count.primary {
    color: #f59e0b;
  }
  
  .count.secondary {
    color: #3b82f6;
  }
  
  .count.maps {
    color: #22919a;
  }
  
  .label {
    color: #6b7280;
    font-size: 0.9rem;
  }
  
  /* Education Suggestions */
  .suggestion-field {
    position: relative;
  }
  
  .suggestion-input {
    position: relative;
  }
  
  .suggestion-input i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
  }
  
  .suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e2e8f0;
    border-top: none;
    max-height: 380px;
    border-radius: 0 0 8px 8px;
    height: auto;
    z-index: 999999;
    display: none;
    font-size: 16px;
    overflow-y: scroll;
  }
  
  /* Education fields can have larger dropdowns */
  .suggestions-dropdown.education-dropdown {
    max-height: 400px;
  }
  
  /* Custom scrollbar styling for suggestions dropdown */
  .suggestions-dropdown::-webkit-scrollbar {
    width: 6px;
  }
  
  .suggestions-dropdown::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
  }
  
  .suggestions-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
  }
  
  .suggestions-dropdown::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
  }
  
  /* Firefox scrollbar */
  .suggestions-dropdown {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
  }
  
  .suggestion-item {
    padding: 5px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .suggestion-item:hover {
    background: #f8fafc;
  }
  
  .suggestion-item:last-child {
    border-bottom: none;
  }
  
  .suggestion-item strong {
    color: #374151;
    display: block;
    font-size: 16px;
  
  }
  
  .suggestion-item small {
    color: #000;
    font-size: 16px;
  }
  
  .suggestion-item i {
    color: #22919a;
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
  }
  
  .suggestion-item > div {
    flex: 1;
  }
  
  /* Specialization */
  .specialty-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .specialty-notice i {
    color: #f59e0b;
    font-size: 1.2rem;
  }
  
  .specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .specialty-item {
    padding: 0px 0px 0px 0px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .specialty-item:hover {
    border-color: #22919a;
    background: #f0f9ff;
    transform: translateY(-2px);
  }
  
  .specialty-item.selected {
    background: linear-gradient(135deg, #22919a 0%, #3398a0 100%);
    color: white;
    border-color: #22919a;
  }
  
  .specialty-item i {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
  }
  
  .specialty-item h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  .specialty-item p {
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .selected-specialty {
    margin-top: 20px;
    padding: 20px;
    background: #f0f9ff;
    border: 2px solid #22919a;
    border-radius: 12px;
  }
  
  .specialty-display {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .specialty-display i {
    font-size: 2rem;
    color: #22919a;
  }
  
  .specialty-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #22919a;
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin: 10px 0;
  }
  
  .services-section h4 {
    color: #374151;
    margin-bottom: 15px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .service-item {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }
  
  .service-item:hover {
    border-color: #88aa47;
    background: #f0f9ff;
  }
  
  .service-item.selected {
    background: #88aa47;
    color: white;
    border-color: #88aa47;
  }
  
  .custom-service-section h4 {
    color: #374151;
    margin-bottom: 10px;
  }
  
  .custom-service-input {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .custom-service-input input {
    flex: 1;
    font-family: "Lexend", sans-serif;
  }
  
  .custom-service-input button {
    padding: 12px 16px;
    background: #88aa47;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .custom-specialty-section h4 {
    color: #374151;
    margin-bottom: 10px;
  }
  
  .custom-specialty-input {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .custom-specialty-input input {
    flex: 1;
    font-family: "Lexend", sans-serif;
  }
  
  .custom-specialty-input button {
    padding: 12px 16px;
    background: #22919a;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
  }
  
  .selected-services {
    margin-top: 20px;
  }
  
  .selected-services h4 {
    color: #374151;
    margin-bottom: 10px;
  }
  
  .service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .service-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #88aa47;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
  }
  
  .remove-service {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-left: 5px;
  }
  
  .summary-card {
    margin-top: 30px;
  }
  
  .summary-card .summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
  }
  
  .summary-card .count {
    font-size: 2.5rem;
    font-weight: 700;
    color: #22919a;
    margin-bottom: 10px;
  }
  
  .summary-card .label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .sub-label {
    color: #6b7280;
    font-size: 0.9rem;
  }
  
  /* Availability */
  .clinic-selection select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
  }
  
  .selected-clinic-info {
    margin-top: 15px;
    padding: 15px;
    background: #f0f9ff;
    border: 2px solid #22919a;
    border-radius: 10px;
  }
  
  .no-clinics-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #fee2e2;
    border: 2px solid #ef4444;
    border-radius: 10px;
    color: #dc2626;
  }
  
  .availability-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .availability-summary .summary-item {
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
  }
  
  .availability-summary .count {
    font-size: 2rem;
    font-weight: 700;
    color: #22919a;
  }
  
  .days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .day-item {
    padding: 15px 10px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
  }
  
  .day-item:hover {
    border-color: #22919a;
    background: #f0f9ff;
  }
  
  .day-item.active {
    background: #22919a;
    color: white;
    border-color: #22919a;
  }
  
  .day-item.working {
    background: #dcfce7;
    color: black;
    border-color: #22919a;
  }
  
  .day-config-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .day-controls {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #374151;
  }
  
  .toggle-label {
    font-weight: 600;
    color: #374151;
  }
  
  .custom-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
  }
  
  .toggle-track {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ccc;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
  }
  
  .toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 19px;
    height: 19px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  }
  
  .custom-toggle.active .toggle-track {
    background-color: #22919a;
  }
  
  .custom-toggle.active .toggle-thumb {
    transform: translateX(25px);
  }
  
  .custom-toggle:hover .toggle-track {
    background-color: #b3b3b3;
  }
  
  .custom-toggle.active:hover .toggle-track {
    background-color: #1a7a82;
  }
  
  .copy-schedule-btn {
    padding: 8px 16px;
    background: #88aa47;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
  }
  
  .schedule-section {
    margin-bottom: 25px;
  }
  
  .schedule-section h4 {
    color: #374151;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .time-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .add-time-btn {
    padding: 8px 16px;
    background: #22919a;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .add-time-btn.online {
    background: #06a7dc;
  }
  
  .time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .time-slot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
  }
  
  .time-slot input {
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
  }
  
  .remove-time-btn {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 0.8rem;
  }
  
  .day-off-notice {
    text-align: center;
    padding: 40px;
    color: #6b7280;
  }
  
  .day-off-notice i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
  }
  
  /* Charges */
  .charges-notice {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .charges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .charge-card {
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
  }
  
  .charge-card:hover {
    border-color: #22919a;
    transform: translateY(-5px);
  }
  
  .rupee-input {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
  }
  
  .rupee-input:focus-within {
    border-color: #22919a;
  }
  
  .rupee-input span {
    padding: 12px 15px;
    background: #f8fafc;
    color: #374151;
    font-weight: 600;
    border-right: 1px solid #e2e8f0;
  }
  
  .rupee-input input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 1rem;
  }
  
  .price-display {
    margin-top: 10px;
    padding: 8px 12px;
    background: #f0f9ff;
    border: 1px solid #22919a;
    border-radius: 6px;
    color: #22919a;
    font-weight: 600;
    text-align: center;
  }
  
  .service-info {
    margin-top: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
  }
  
  .service-info strong {
    color: #374151;
    display: block;
    margin-bottom: 5px;
  }
  
  .service-info p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
  }
  
  .payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .payment-method {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .payment-method:hover {
    border-color: #22919a;
    background: #f0f9ff;
  }
  
  .payment-method.selected {
    background: #22919a;
    color: white;
    border-color: #22919a;
  }
  
  .payment-method i {
    font-size: 1.5rem;
  }
  
  .selected-payments {
    margin-top: 15px;
  }
  
  .selected-payments h4 {
    color: #374151;
    margin-bottom: 10px;
  }
  
  .payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .payment-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: #22919a;
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
  }
  
  .pricing-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .price-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
  }
  
  .price-item i {
    font-size: 1.5rem;
    color: #22919a;
  }
  
  .price-details {
    flex: 1;
  }
  
  .service {
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
  }
  
  .amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #22919a;
  }
  
  /* Review Step */
  .completion-status {
    margin-bottom: 30px;
  }
  
  .completion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .completion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
  }
  
  .completion-item.complete {
    background: #dcfce7;
    color: #166534;
    border: 2px solid #bbf7d0;
  }
  
  .completion-item.incomplete {
    background: #fee2e2;
    color: #dc2626;
    border: 2px solid #fecaca;
  }
  
  .completion-notice {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
  }
  
  .doctor-profile {
    margin-bottom: 30px;
  }
  
  .profile-header {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .profile-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #22919a;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
  }
  
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .default-avatar {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 2rem;
  }
  
  .photo-status-success {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #22c55e;
    font-size: 0.875rem;
    margin-top: 8px;
  }
  
  .photo-status-missing {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-size: 0.875rem;
    margin-top: 8px;
  }
  
  .upload-preview {
    position: relative;
    display: block;
    margin: 0 auto;
  }
  
  .remove-upload-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background-color 0.2s;
  }
  
  .remove-upload-btn:hover {
    background: #c82333;
  }
  
  .avatar-fallback {
    font-size: 2rem;
    font-weight: 700;
    color: #22919a;
  }
  
  .photo-status {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .profile-info {
    flex: 1;
  }
  
  .profile-info h2 {
    color: #021c5a;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .profile-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
  }
  
  .detail-item i {
    color: #22919a;
    width: 20px;
  }
  
  .bio-preview {
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #22919a;
  }
  
  .bio-preview h4 {
    color: #374151;
    margin-bottom: 10px;
  }
  
  .bio-preview p {
    color: #6b7280;
    line-height: 1.6;
  }
  
  .review-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .review-section {
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
  }
  
  .review-section h4 {
    color: #374151;
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .review-section h4 i {
    color: #22919a;
  }
  
  .ai-photo-generation {
    margin-bottom: 30px;
  }
  
  .ai-photo-generation h3 {
    color: #374151;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .ai-photo-generation h3 i {
    color: #22919a;
  }
  
  .ai-photo-generation p {
    color: #6b7280;
    margin-bottom: 25px;
  }
  
  .photo-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 30px;
  }
  
  .original-photo,
  .enhanced-photo {
    text-align: center;
  }
  
  .original-photo h4,
  .enhanced-photo h4 {
    color: #374151;
    margin-bottom: 15px;
    font-size: 1rem;
  }
  
  .photo-container {
    width: 200px;
    height: 200px;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: #f9fafb;
    overflow: hidden;
  }
  
  .photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .no-photo-placeholder {
    text-align: center;
    color: #9ca3af;
  }
  
  .no-photo-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
  }
  
  .no-photo-placeholder p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  .arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
  }
  
  .arrow-container i {
    font-size: 1.5rem;
    color: #22919a;
  }
  
  .generate-photo-btn {
    background: linear-gradient(135deg, #22919a 0%, #1a7a82 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
  
  .generate-photo-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 145, 154, 0.3);
  }
  
  .generate-photo-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  
  .generation-status {
    margin-top: 15px;
    color: #22919a;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
  }
  
  .photo-options {
    margin-top: 30px;
    text-align: center;
  }
  
  .photo-options h4 {
    color: #374151;
    margin-bottom: 15px;
  }
  
  .option-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .option-btn {
    background: white;
    border: 2px solid #e5e7eb;
    color: #374151;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
  }
  
  .option-btn:hover {
    border-color: #22919a;
    color: #22919a;
  }
  
  .option-btn.selected {
    background: #22919a;
    border-color: #22919a;
    color: white;
  }
  
  .final-submission {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #22919a;
  }
  
  .final-submission h3 {
    color: #021c5a;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .final-submission p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .submit-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #22919a 0%, #3398a0 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
  }
  
  .submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(34, 145, 154, 0.3);
  }
  
  .submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
  }
  
  .submission-notice {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
  }
  
  /* Navigation */
  .form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
  }
  
  .nav-btn {
    padding: 12px 30px;
    border: 2px solid #22919a;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
  }
  
  .nav-btn.prev {
    background: white;
    color: #22919a;
  }
  
  .nav-btn.prev:hover:not(:disabled) {
    background: #22919a;
    color: white;
  }
  
  .nav-btn.next {
    background: #22919a;
    color: white;
  }
  
  .nav-btn.next:hover {
    background: #1d7a82;
    transform: translateX(2px);
  }
  
  .nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f3f4f6;
    color: #9ca3af;
    border-color: #d1d5db;
  }
  
  /* Modal */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .success-animation {
    margin-bottom: 20px;
  }
  
  .success-animation i {
    font-size: 4rem;
    color: #22c55e;
    animation: bounceIn 0.6s ease;
  }
  
  @keyframes bounceIn {
    0% {
      transform: scale(0.3);
      opacity: 0;
    }
    50% {
      transform: scale(1.05);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .modal-content h2 {
    color: #021c5a;
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .modal-content p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .modal-btn {
    padding: 12px 30px;
    background: #22919a;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .registration-container {
      flex-direction: column;
    }
  
    .sidebar {
      width: 100%;
      padding: 15px;
    }
  
    .steps-list {
      flex-direction: row;
      overflow-x: auto;
      gap: 10px;
    }
  
    .step-item {
      min-width: 200px;
    }
  
    .form-content {
      padding: 20px;
    }
  
    .profile-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  
  @media (max-width: 768px) {
    .header h1 {
      font-size: 2rem;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
    }
  
    .charges-grid {
      grid-template-columns: 1fr;
    }
  
    .time-inputs {
      grid-template-columns: 1fr;
    }
  
    .tab-buttons {
      flex-direction: column;
    }
  
    .days-grid {
      grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
  
    .day-config-header {
      flex-direction: column;
      align-items: stretch;
      gap: 15px;
    }
  
    .summary-grid {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
  }
  
  @media (max-width: 480px) {
    .app-container {
      margin: 0px auto;
      
  }
    .header {
      padding: 20px;
    }
  
    .header h1 {
      font-size: 1.5rem;
    }
  
    .card {
      padding: 20px;
    }
  
    .mobile-input-group {
      flex-direction: column;
      gap: 10px;
    }
  
    .verify-btn {
      width: 100%;
    }
  
    .otp-input {
      flex-direction: column;
    }
  
    .form-navigation {
      flex-direction: column;
      gap: 15px;
    }
  
    .nav-btn {
      width: 100%;
    }
  }
  
  /* Utility Classes */
  .hidden {
    display: none !important;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-success {
    color: #22c55e;
  }
  
  .text-error {
    color: #ef4444;
  }
  
  .text-warning {
    color: #f59e0b;
  }
  
  .bg-success {
    background-color: #dcfce7;
  }
  
  .bg-error {
    background-color: #fee2e2;
  }
  
  .bg-warning {
    background-color: #fef3c7;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .mb-0 {
    margin-bottom: 0;
  }
  
  .mt-4 {
    margin-top: 1rem;
  }
  
  .p-4 {
    padding: 1rem;
  }
  
  /* Animation Classes */
  .fade-in {
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .slide-in {
    animation: slideIn 0.3s ease;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Date Input Styles */
  .input-with-icon {
      position: relative;
      width: 100%;
  }
  
  .input-with-icon input[type="date"] {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-family: "Lexend", sans-serif;
      font-size: 16px;
      outline: none;
      box-sizing: border-box;
      cursor: pointer;
  }
  
  .input-with-icon input[type="date"]::-webkit-calendar-picker-indicator {
      opacity: 0;
      position: absolute;
      right: 0;
      top: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
  }
  
  .input-with-icon .icon-right {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #23939E;
      pointer-events: none;
      font-size: 18px;
  }
  
  .input-with-icon input[type="date"]:focus {
      border-color: #23939E;
      box-shadow: 0 0 0 2px rgba(35, 147, 158, 0.1);
  }
  
  /* Hide the default calendar icon */
  input[type="date"]::-webkit-inner-spin-button,
  input[type="date"]::-webkit-clear-button {
      display: none;
      -webkit-appearance: none;
  }
  
  /* Style the date input placeholder */
  input[type="date"]:invalid::-webkit-datetime-edit {
      color: #999;
  }
  
  /* Form Validation Styles */
  .error-message {
      color: #dc2626;
      font-size: 0.875rem;
      margin-top: 0.5rem;
      display: none;
      padding: 0.5rem;
      background-color: #fee2e2;
      border: 1px solid #fecaca;
      border-radius: 0.375rem;
      animation: fadeIn 0.3s ease;
  }
  
  input.error,
  textarea.error,
  select.error {
      border-color: #dc2626 !important;
      background-color: #fef2f2 !important;
  }
  
  input.error:focus,
  textarea.error:focus,
  select.error:focus {
      box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
  }
  
  /* Success styles */
  .valid {
      border-color: #22c55e !important;
      background-color: #f0fdf4 !important;
  }
  
  .valid:focus {
      box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
  }
  
  /* Upload status styles */
  .upload-status {
      margin-top: 0.5rem;
      padding: 0.5rem;
      border-radius: 0.375rem;
      font-size: 0.875rem;
  }
  
  .upload-status.success {
      background-color: #f0fdf4;
      color: #166534;
      border: 1px solid #bbf7d0;
  }
  
  .upload-status.error {
      background-color: #fee2e2;
      color: #dc2626;
      border: 1px solid #fecaca;
  }
  
  /* Animation for validation messages */
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(-10px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  /* Overnight shift indicator styles */
  .overnight-shift-info {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 12px 16px;
      border-radius: 8px;
      margin-top: 12px;
      display: flex;
      align-items: center;
      font-size: 14px;
      font-weight: 500;
      box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
      animation: slideInUp 0.3s ease-out;
  }
  
  .overnight-shift-info i {
      margin-right: 8px;
      font-size: 16px;
      color: #ffd700;
  }
  
  @keyframes slideInUp {
      from {
          transform: translateY(10px);
          opacity: 0;
      }
      to {
          transform: translateY(0);
          opacity: 1;
      }
  }