/* ============================================================================
   REDESIGN MEDICI - Etapa 1A (CSS Override)
   ============================================================================
   
   Autor: AI Assistant
   Data: 2026-02-17
   Branch: redesign
   
   SCOP: Modernizare pagină Medici fără modificări JS
   METODĂ: CSS overrides cu !important pentru inline styles
   
   REVERT: Șterge acest fișier și referința din index.html
   ============================================================================ */

/* ============================================================================
   VARIABILE SPECIFICE REDESIGN
   ============================================================================ */
:root {
    /* Card dimensions */
    --card-min-width: 300px;
    --card-gap: 16px;
    --card-padding: 20px;
    --card-radius: 16px;
    
    /* Colors - Medical Theme */
    --medical-gradient: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    --medical-light: #ecfeff;
    --medical-accent: #06b6d4;
    
    /* Shadows - Softer */
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
    --card-shadow-hover: 0 8px 25px rgba(8, 145, 178, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ============================================================================
   PAGINA MEDICI - HEADER
   ============================================================================ */
#medicalDoctorsSection .page-header {
    margin-bottom: 20px !important;
}

#medicalDoctorsSection .page-header h1 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #0e7490 !important;
    margin-bottom: 4px !important;
}

#medicalDoctorsSection .page-header p {
    font-size: 14px !important;
    color: #64748b !important;
    margin: 0 !important;
}

/* ============================================================================
   FILTRU BAR - MAI COMPACT
   ============================================================================ */
#medicalDoctorsSection > .card:first-of-type {
    padding: 16px !important;
    margin-bottom: 16px !important;
    border-radius: var(--card-radius) !important;
}

#medicalDoctorsSection > .card:first-of-type > div {
    gap: 12px !important;
}

#medicalDoctorsSection > .card:first-of-type label {
    font-size: 13px !important;
    margin-bottom: 4px !important;
}

#medicalDoctorsSection > .card:first-of-type select,
#medicalDoctorsSection > .card:first-of-type input[type="text"] {
    padding: 10px 12px !important;
    font-size: 14px !important;
    border-radius: 10px !important;
}

#medicalDoctorsSection > .card:first-of-type button {
    padding: 10px 16px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
}

/* ============================================================================
   GRID MEDICI - OVERRIDE INLINE STYLES
   ============================================================================ */
.doctors-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(var(--card-min-width), 1fr)) !important;
    gap: var(--card-gap) !important;
}

/* ============================================================================
   CARD MEDIC - DESIGN MODERN
   ============================================================================ */
.doctors-grid .doctor-card {
    padding: var(--card-padding) !important;
    border-radius: var(--card-radius) !important;
    box-shadow: var(--card-shadow) !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.25s ease !important;
    background: #ffffff !important;
}

.doctors-grid .doctor-card:hover {
    box-shadow: var(--card-shadow-hover) !important;
    transform: translateY(-3px) !important;
    border-color: var(--medical-accent) !important;
}

/* Card Header - Avatar și Info */
.doctors-grid .doctor-card > div:first-child {
    gap: 14px !important;
}

/* Info container - allow text to wrap */
.doctors-grid .doctor-card > div:first-child > div:nth-child(2) {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden !important;
}

/* Avatar Medic */
.doctors-grid .doctor-card > div:first-child > div:first-child {
    width: 56px !important;
    height: 56px !important;
    font-size: 22px !important;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3) !important;
}

/* Nume Medic - Dynamic sizing */
.doctors-grid .doctor-card h4 {
    font-size: clamp(13px, 2.5vw, 16px) !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 2px !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

/* Specializare - Dynamic sizing */
.doctors-grid .doctor-card > div:first-child > div:nth-child(2) > p:first-of-type {
    font-size: clamp(11px, 2vw, 13px) !important;
    color: #0891b2 !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

/* Email & Telefon - Mai Compact cu wrap */
.doctors-grid .doctor-card > div:first-child > div:nth-child(2) > p:last-of-type {
    font-size: clamp(10px, 1.8vw, 12px) !important;
    color: #94a3b8 !important;
    margin-top: 2px !important;
    line-height: 1.4 !important;
    word-break: break-all !important;
    overflow-wrap: break-word !important;
}

/* Ascunde N/A dacă e prezent */
.doctors-grid .doctor-card > div:first-child > div:nth-child(2) > p:last-of-type:empty {
    display: none !important;
}

/* ============================================================================
   BADGE-URI STATUS - MAI MODERNE
   ============================================================================ */
.doctors-grid .doctor-card > div:nth-child(2) {
    margin-top: 14px !important;
    padding-top: 14px !important;
    gap: 6px !important;
    border-top: 1px solid #f1f5f9 !important;
}

.doctors-grid .doctor-card .badge,
.doctors-grid .doctor-card > div:nth-child(2) > span {
    padding: 4px 8px !important;
    border-radius: 20px !important;
    font-size: clamp(9px, 1.5vw, 11px) !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

/* Badge container - flexbox wrap */
.doctors-grid .doctor-card > div:nth-child(2) {
    display: flex !important;
    flex-wrap: wrap !important;
}

/* Badge Activ - Verde */
.doctors-grid .doctor-card > div:nth-child(2) > span:first-child[style*="dcfce7"] {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%) !important;
    color: #15803d !important;
}

/* Badge Inactiv - Roșu */
.doctors-grid .doctor-card > div:nth-child(2) > span:first-child[style*="fee2e2"] {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%) !important;
    color: #dc2626 !important;
}

/* Badge Programări - Albastru */
.doctors-grid .doctor-card > div:nth-child(2) > span[style*="dbeafe"] {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
    color: #1d4ed8 !important;
}

/* Badge Durată - Mov */
.doctors-grid .doctor-card > div:nth-child(2) > span[style*="f3e8ff"] {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%) !important;
    color: #7c3aed !important;
}

/* ============================================================================
   BUTOANE ACȚIUNI - MAI VIZIBILE
   ============================================================================ */
.doctors-grid .doctor-card > div:last-child {
    margin-top: 14px !important;
    gap: 8px !important;
    justify-content: stretch !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

.doctors-grid .doctor-card > div:last-child button {
    padding: 8px 6px !important;
    font-size: clamp(10px, 1.6vw, 12px) !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Buton Program - Outline */
.doctors-grid .doctor-card > div:last-child button:nth-child(1) {
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    color: #475569 !important;
}

.doctors-grid .doctor-card > div:last-child button:nth-child(1):hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
}

/* Buton Consultații - Outline */
.doctors-grid .doctor-card > div:last-child button:nth-child(2) {
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    color: #475569 !important;
}

.doctors-grid .doctor-card > div:last-child button:nth-child(2):hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #334155 !important;
}

/* Buton Editează - Primary */
.doctors-grid .doctor-card > div:last-child button:nth-child(3) {
    background: var(--medical-gradient) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 2px 6px rgba(8, 145, 178, 0.3) !important;
}

.doctors-grid .doctor-card > div:last-child button:nth-child(3):hover {
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* ============================================================================
   CARD INACTIV - STIL SPECIAL
   ============================================================================ */
.doctors-grid .doctor-card[style*="opacity: 0.6"] {
    opacity: 0.7 !important;
    background: #fafafa !important;
}

.doctors-grid .doctor-card[style*="opacity: 0.6"]:hover {
    opacity: 0.85 !important;
}

/* ============================================================================
   EMPTY STATE - CÂND NU SUNT MEDICI
   ============================================================================ */
#medical-doctors-container > .card:only-child {
    padding: 50px 20px !important;
    border-radius: var(--card-radius) !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: 2px dashed #e2e8f0 !important;
}

#medical-doctors-container > .card:only-child p {
    font-size: 16px !important;
    color: #64748b !important;
}

/* ============================================================================
   RESPONSIVE - MOBILE
   ============================================================================ */
@media (max-width: 768px) {
    :root {
        --card-min-width: 100%;
        --card-gap: 12px;
        --card-padding: 16px;
    }
    
    #medicalDoctorsSection .page-header h1 {
        font-size: 22px !important;
    }
    
    /* Filtru - Stack vertical pe mobil */
    #medicalDoctorsSection > .card:first-of-type > div {
        flex-direction: column !important;
    }
    
    #medicalDoctorsSection > .card:first-of-type > div > div {
        min-width: 100% !important;
    }
    
    #medicalDoctorsSection > .card:first-of-type button {
        width: 100% !important;
    }
    
    /* Card - Full width */
    .doctors-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Butoane - 2 pe rând pe mobil mic */
    .doctors-grid .doctor-card > div:last-child {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .doctors-grid .doctor-card > div:last-child button:nth-child(3) {
        grid-column: span 2 !important;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --card-min-width: 280px;
    }
}

/* Desktop mare - 4 coloane */
@media (min-width: 1400px) {
    :root {
        --card-min-width: 280px;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    }
}

/* ============================================================================
   ANIMAȚII - FADE IN CARDS
   ============================================================================ */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.doctors-grid .doctor-card {
    animation: cardFadeIn 0.3s ease forwards !important;
}

.doctors-grid .doctor-card:nth-child(1) { animation-delay: 0.05s !important; }
.doctors-grid .doctor-card:nth-child(2) { animation-delay: 0.1s !important; }
.doctors-grid .doctor-card:nth-child(3) { animation-delay: 0.15s !important; }
.doctors-grid .doctor-card:nth-child(4) { animation-delay: 0.2s !important; }
.doctors-grid .doctor-card:nth-child(5) { animation-delay: 0.25s !important; }
.doctors-grid .doctor-card:nth-child(6) { animation-delay: 0.3s !important; }

/* ============================================================================
   PRINT STYLES
   ============================================================================ */
@media print {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .doctors-grid .doctor-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid !important;
    }
    
    .doctors-grid .doctor-card > div:last-child {
        display: none !important;
    }
}

/* ============================================================================
   ============================================================================
   MODAL PROGRAM DE LUCRU - FULLSCREEN & MODERN REDESIGN
   ============================================================================
   ============================================================================ */

/* ============================================================================
   MODAL CONTAINER - FULLSCREEN
   ============================================================================ */
.medical-modal.active .medical-modal-content {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Desktop - margini mici pentru efect de "aproape fullscreen" */
@media (min-width: 1024px) {
    .medical-modal.active .medical-modal-content {
        width: calc(100% - 40px) !important;
        height: calc(100% - 40px) !important;
        max-width: 1600px !important;
        margin: 20px auto !important;
        border-radius: 20px !important;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3) !important;
    }
}

/* ============================================================================
   MODAL HEADER - MODERN GRADIENT
   ============================================================================ */
.medical-modal-header {
    padding: 12px 16px !important;
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #164e63 100%) !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.medical-modal-header h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: -0.3px !important;
}

@media (min-width: 768px) {
    .medical-modal-header {
        padding: 14px 24px !important;
    }
    
    .medical-modal-header h2 {
        font-size: 18px !important;
    }
}

.medical-modal-close {
    width: 40px !important;
    height: 40px !important;
    font-size: 28px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(4px) !important;
}

.medical-modal-close:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: rotate(90deg) !important;
    transition: all 0.3s ease !important;
}

/* ============================================================================
   MODAL BODY - SCHEDULE FORM
   ============================================================================ */
.medical-modal-body {
    padding: 0 !important;
    flex: 1 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

#doctorScheduleForm {
    max-height: none !important;
    height: 100% !important;
    overflow-y: auto !important;
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important;
}

@media (min-width: 768px) {
    #doctorScheduleForm {
        padding: 16px 24px !important;
    }
}

/* Descriere text - mai compactă */
#doctorScheduleForm > p:first-child {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;
    border-left: 3px solid #0891b2 !important;
    margin-bottom: 12px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
}

/* ============================================================================
   TABS ZILE - HORIZONTAL SCROLL MODERN
   ============================================================================ */
#doctorScheduleForm > div:nth-child(2) {
    display: flex !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
    overflow-x: auto !important;
    padding: 2px 2px 8px 2px !important;
    scrollbar-width: thin !important;
    -webkit-overflow-scrolling: touch !important;
    flex-shrink: 0 !important;
}

/* Hide scrollbar but keep functionality */
#doctorScheduleForm > div:nth-child(2)::-webkit-scrollbar {
    height: 4px !important;
}

#doctorScheduleForm > div:nth-child(2)::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
    border-radius: 4px !important;
}

#doctorScheduleForm > div:nth-child(2)::-webkit-scrollbar-thumb {
    background: #cbd5e1 !important;
    border-radius: 4px !important;
}

/* Tab buttons */
.schedule-day-tab {
    padding: 8px 12px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    min-width: 55px !important;
    transition: all 0.25s ease !important;
    position: relative !important;
    border: 2px solid #e2e8f0 !important;
    background: #ffffff !important;
    color: #64748b !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

.schedule-day-tab:hover {
    border-color: #0891b2 !important;
    color: #0891b2 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(8, 145, 178, 0.15) !important;
}

.schedule-day-tab.active {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%) !important;
    border-color: #0891b2 !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4) !important;
}

/* Badge count pe tab */
.schedule-day-tab span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    border-radius: 9px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    margin-left: 4px !important;
}

.schedule-day-tab.active span {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

/* Weekend tabs - stil diferit */
.schedule-day-tab[style*="fef3c7"] {
    background: #fffbeb !important;
    border-color: #fcd34d !important;
}

/* ============================================================================
   CONTAINER ZILE - CONȚINUT
   ============================================================================ */
.schedule-day-content {
    flex: 1 !important;
    overflow-y: auto !important;
    padding-bottom: 10px !important;
}

.schedule-day-content h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 16px !important;
}

/* Header zi cu buton Adaugă */
.schedule-day-content > div:first-child {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #f1f5f9 !important;
}

.schedule-day-content > div:first-child button {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border: none !important;
    color: white !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    transition: all 0.2s ease !important;
}

.schedule-day-content > div:first-child button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4) !important;
}

/* ============================================================================
   SLOT ROW - INTERVAL ORAR - COMPLET REDESIGN
   ============================================================================ */
.slot-row {
    padding: 16px !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    border: 2px solid #e2e8f0 !important;
    border-left: 5px solid #3B82F6 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    margin-bottom: 12px !important;
    transition: all 0.2s ease !important;
}

.slot-row:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

/* Grid-ul principal al slot-ului */
.slot-row > div:first-child {
    display: grid !important;
    gap: 12px !important;
    align-items: end !important;
}

/* Desktop - 5 coloane */
@media (min-width: 900px) {
    .slot-row > div:first-child {
        grid-template-columns: 1.5fr 1fr 1fr 0.8fr auto !important;
    }
}

/* Tablet - 3 coloane + wrap */
@media (min-width: 600px) and (max-width: 899px) {
    .slot-row > div:first-child {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
    
    .slot-row > div:first-child > div:nth-child(4) {
        grid-column: span 2 !important;
    }
}

/* Mobile - stack vertical */
@media (max-width: 599px) {
    .slot-row > div:first-child {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .slot-row > div:first-child > div:first-child {
        grid-column: span 2 !important;
    }
    
    .slot-row > div:first-child > div:nth-child(4) {
        grid-column: span 1 !important;
    }
    
    .slot-row > div:first-child > button {
        grid-column: span 1 !important;
    }
}

/* Labels în slot */
.slot-row label {
    display: block !important;
    margin-bottom: 6px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Inputs și selects în slot */
.slot-row select,
.slot-row input[type="time"],
.slot-row input[type="number"] {
    padding: 12px 14px !important;
    font-size: 15px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    background: #f8fafc !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.slot-row select:focus,
.slot-row input:focus {
    border-color: #0891b2 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1) !important;
    outline: none !important;
}

/* Buton ștergere slot */
.slot-row > div:first-child > button {
    padding: 12px 14px !important;
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border: 2px solid #fecaca !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    height: auto !important;
    min-height: 46px !important;
}

.slot-row > div:first-child > button:hover {
    background: #fee2e2 !important;
    border-color: #f87171 !important;
    transform: scale(1.05) !important;
}

/* ============================================================================
   SLOT - LABEL OPȚIONAL (INPUT TEXT)
   ============================================================================ */
.slot-row > div:nth-child(2) {
    margin-top: 8px !important;
}

.slot-row > div:nth-child(2) input[type="text"] {
    padding: 8px 12px !important;
    font-size: 13px !important;
    border: 2px dashed #e2e8f0 !important;
    border-radius: 8px !important;
    background: #fafafa !important;
    width: 100% !important;
    box-sizing: border-box !important;
    transition: all 0.2s ease !important;
}

.slot-row > div:nth-child(2) input[type="text"]:focus {
    border-style: solid !important;
    border-color: #0891b2 !important;
    background: #ffffff !important;
}

.slot-row > div:nth-child(2) input[type="text"]::placeholder {
    color: #94a3b8 !important;
    font-style: italic !important;
}

/* ============================================================================
   SLOT - TIPURI CONSULTAȚIE (CHECKBOXES)
   ============================================================================ */
.slot-row > div:nth-child(3) {
    margin-top: 8px !important;
    padding-top: 8px !important;
    border-top: 1px dashed #e2e8f0 !important;
}

.slot-row > div:nth-child(3) > label:first-child {
    font-size: 9px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #64748b !important;
    margin-bottom: 6px !important;
    display: block !important;
}

/* Container checkboxes */
.slot-row > div:nth-child(3) > div {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

/* Checkbox labels - pill style */
.slot-row > div:nth-child(3) > div > label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 5px 10px !important;
    background: #f3f4f6 !important;
    border-radius: 16px !important;
    cursor: pointer !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
    border: 2px solid transparent !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    color: #475569 !important;
}

.slot-row > div:nth-child(3) > div > label:hover {
    background: #e5e7eb !important;
}

/* Checkbox checked state */
.slot-row > div:nth-child(3) > div > label:has(input:checked),
.slot-row > div:nth-child(3) > div > label[style*="dbeafe"] {
    background: #dbeafe !important;
    border-color: #3b82f6 !important;
    color: #1d4ed8 !important;
}

/* Checkbox input */
.slot-row > div:nth-child(3) > div > label input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    accent-color: #3b82f6 !important;
}

/* ============================================================================
   ACȚIUNI RAPIDE - COMPACT BOX
   ============================================================================ */
#doctorScheduleForm > div[style*="f0fdf4"] {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%) !important;
    border: 1px solid #86efac !important;
    border-radius: 8px !important;
    padding: 10px !important;
    margin-top: 10px !important;
}

#doctorScheduleForm > div[style*="f0fdf4"] > p {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #166534 !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

#doctorScheduleForm > div[style*="f0fdf4"] > div {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
}

#doctorScheduleForm > div[style*="f0fdf4"] button {
    padding: 6px 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

#doctorScheduleForm > div[style*="f0fdf4"] button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Buton Copiază - Verde */
#doctorScheduleForm > div[style*="f0fdf4"] button[style*="10b981"] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
}

/* Buton Program simplu - Albastru */
#doctorScheduleForm > div[style*="f0fdf4"] button[style*="3b82f6"] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

/* Buton Șterge tot - Roșu */
#doctorScheduleForm > div[style*="f0fdf4"] button[style*="ef4444"] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
}

/* ============================================================================
   FOOTER BUTOANE - STICKY COMPACT
   ============================================================================ */
#doctorScheduleForm > div:last-child {
    position: sticky !important;
    bottom: 0 !important;
    background: #ffffff !important;
    padding: 12px 0 0 0 !important;
    margin-top: auto !important;
    border-top: 1px solid #e2e8f0 !important;
    display: flex !important;
    gap: 10px !important;
    justify-content: flex-end !important;
}

#doctorScheduleForm > div:last-child::before {
    display: none !important;
}

#doctorScheduleForm > div:last-child button {
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

/* Buton Anulează */
#doctorScheduleForm > div:last-child .btn-secondary {
    background: #f1f5f9 !important;
    border: 2px solid #e2e8f0 !important;
    color: #64748b !important;
}

#doctorScheduleForm > div:last-child .btn-secondary:hover {
    background: #e2e8f0 !important;
    color: #475569 !important;
}

/* Buton Salvează */
#doctorScheduleForm > div:last-child .btn-primary {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4) !important;
}

#doctorScheduleForm > div:last-child .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(8, 145, 178, 0.5) !important;
}

/* ============================================================================
   EMPTY STATE - CÂND NU E PROGRAM
   ============================================================================ */
.schedule-day-content > div:nth-child(2) > div[style*="dashed"] {
    padding: 40px 20px !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
    border: 2px dashed #cbd5e1 !important;
    border-radius: 14px !important;
    text-align: center !important;
}

.schedule-day-content > div:nth-child(2) > div[style*="dashed"] p {
    color: #64748b !important;
    font-size: 15px !important;
    margin-bottom: 16px !important;
}

.schedule-day-content > div:nth-child(2) > div[style*="dashed"] button {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

/* ============================================================================
   MOBILE OPTIMIZATIONS
   ============================================================================ */
@media (max-width: 599px) {
    /* Modal fullscreen complet pe mobil */
    .medical-modal.active .medical-modal-content {
        border-radius: 0 !important;
    }
    
    /* Header mai mic */
    .medical-modal-header {
        padding: 10px 12px !important;
    }
    
    .medical-modal-header h2 {
        font-size: 14px !important;
    }
    
    .medical-modal-close {
        width: 28px !important;
        height: 28px !important;
        font-size: 18px !important;
    }
    
    /* Form padding foarte redus */
    #doctorScheduleForm {
        padding: 10px !important;
    }
    
    /* Ascunde descrierea pe mobile */
    #doctorScheduleForm > p:first-child {
        display: none !important;
    }
    
    /* Tabs mai mici - într-un rând */
    .schedule-day-tab {
        padding: 6px 8px !important;
        font-size: 12px !important;
        min-width: 42px !important;
        border-radius: 6px !important;
    }
    
    .schedule-day-tab span {
        min-width: 14px !important;
        height: 14px !important;
        font-size: 9px !important;
        margin-left: 2px !important;
        padding: 0 3px !important;
    }
    
    /* Header zi - mai compact */
    .schedule-day-content > div:first-child {
        margin-bottom: 10px !important;
        padding-bottom: 8px !important;
    }
    
    .schedule-day-content > div:first-child h4 {
        font-size: 15px !important;
    }
    
    .schedule-day-content > div:first-child button {
        padding: 6px 10px !important;
        font-size: 11px !important;
    }
    
    /* Slot row - mai compact */
    .slot-row {
        padding: 10px !important;
        margin-bottom: 8px !important;
        border-radius: 10px !important;
    }
    
    .slot-row label {
        font-size: 9px !important;
        margin-bottom: 3px !important;
    }
    
    .slot-row select,
    .slot-row input[type="time"],
    .slot-row input[type="number"] {
        padding: 8px 10px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
    }
    
    /* Buton ștergere slot */
    .slot-row > div:first-child > button {
        padding: 8px 10px !important;
        font-size: 14px !important;
        min-height: 38px !important;
    }
    
    /* Label opțional - input text */
    .slot-row > div:nth-child(2) {
        margin-top: 8px !important;
    }
    
    .slot-row > div:nth-child(2) input[type="text"] {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
    
    /* Checkboxes pe mobil - mai mici */
    .slot-row > div:nth-child(3) {
        margin-top: 8px !important;
        padding-top: 8px !important;
    }
    
    .slot-row > div:nth-child(3) > label:first-child {
        font-size: 9px !important;
        margin-bottom: 6px !important;
    }
    
    .slot-row > div:nth-child(3) > div > label {
        padding: 4px 8px !important;
        font-size: 10px !important;
        border-radius: 12px !important;
    }
    
    .slot-row > div:nth-child(3) > div > label input[type="checkbox"] {
        width: 12px !important;
        height: 12px !important;
    }
    
    /* ACȚIUNI RAPIDE - SUPER COMPACT PE MOBILE */
    #doctorScheduleForm > div[style*="f0fdf4"] {
        padding: 8px !important;
        margin-top: 10px !important;
        border-radius: 8px !important;
    }
    
    #doctorScheduleForm > div[style*="f0fdf4"] > p {
        font-size: 11px !important;
        margin-bottom: 8px !important;
    }
    
    #doctorScheduleForm > div[style*="f0fdf4"] > div {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
    }
    
    #doctorScheduleForm > div[style*="f0fdf4"] button {
        padding: 8px 6px !important;
        font-size: 10px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Butonul "Șterge tot" ocupă toată lățimea */
    #doctorScheduleForm > div[style*="f0fdf4"] button[style*="ef4444"] {
        grid-column: span 2 !important;
    }
    
    /* Footer butoane - COMPACT */
    #doctorScheduleForm > div:last-child {
        flex-direction: row !important;
        padding: 10px 0 0 0 !important;
        gap: 8px !important;
    }
    
    #doctorScheduleForm > div:last-child button {
        flex: 1 !important;
        padding: 12px 10px !important;
        font-size: 13px !important;
        border-radius: 8px !important;
    }
}

/* ============================================================================
   ANIMAȚII SMOOTH
   ============================================================================ */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slot-row {
    animation: slideIn 0.3s ease forwards !important;
}

.schedule-day-content {
    animation: slideIn 0.2s ease forwards !important;
}

/* ============================================================================
   ============================================================================
   FORMULAR EDITARE/ADĂUGARE MEDIC - FULLSCREEN & MODERN
   ============================================================================
   ============================================================================ */

/* ============================================================================
   FORM DOCTOR - CONTAINER SCROLLABIL
   ============================================================================ */
#doctorForm,
.doctor-form-modern {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    overflow-y: auto !important;
    padding-bottom: 80px !important; /* Spațiu pentru butoane sticky */
}

/* ============================================================================
   SECȚIUNI FORMULAR - COMPACTE
   ============================================================================ */
#doctorForm .form-section,
.doctor-form-modern .form-section {
    margin-bottom: 16px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 16px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

#doctorForm .form-section:last-of-type,
.doctor-form-modern .form-section:last-of-type {
    margin-bottom: 0 !important;
    border-bottom: none !important;
}

/* Titlu secțiune */
#doctorForm .form-section-title,
.doctor-form-modern .form-section-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0e7490 !important;
    margin-bottom: 14px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #e0f2fe !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* ============================================================================
   GRID-URI FORMULAR - RESPONSIVE
   ============================================================================ */
#doctorForm .form-grid,
.doctor-form-modern .form-grid {
    display: grid !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
}

#doctorForm .form-grid-2,
.doctor-form-modern .form-grid-2 {
    grid-template-columns: 1fr 1fr !important;
}

#doctorForm .form-grid-3,
.doctor-form-modern .form-grid-3 {
    grid-template-columns: 1fr 1fr 1fr !important;
}

/* ============================================================================
   FORM GROUPS - COMPACTE
   ============================================================================ */
#doctorForm .form-group,
.doctor-form-modern .form-group {
    margin-bottom: 0 !important;
}

#doctorForm .form-group label,
.doctor-form-modern .form-group label {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    margin-bottom: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}

/* ============================================================================
   INPUTS - MODERNE ȘI TOUCH-FRIENDLY
   ============================================================================ */
#doctorForm .form-input,
.doctor-form-modern .form-input,
#doctorForm input,
#doctorForm select,
#doctorForm textarea,
.doctor-form-modern input,
.doctor-form-modern select,
.doctor-form-modern textarea {
    width: 100% !important;
    padding: 10px 12px !important;
    font-size: 16px !important; /* 16px pentru a preveni zoom pe iOS */
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #f8fafc !important;
    color: #1e293b !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    /* IMPORTANT: appearance se setează DOAR pe desktop - vezi mai jos */
}

/* NOTE: Select arrow și options sunt stilizate în secțiunea 
   "SELECT STYLING - DIFERENȚIAT MOBILE VS DESKTOP" mai jos */

#doctorForm .form-input:focus,
.doctor-form-modern .form-input:focus,
#doctorForm input:focus,
#doctorForm select:focus,
#doctorForm textarea:focus,
.doctor-form-modern input:focus,
.doctor-form-modern select:focus,
.doctor-form-modern textarea:focus {
    border-color: #0891b2 !important;
    background: #ffffff !important;
    color: #1e293b !important;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1) !important;
    outline: none !important;
}

/* Textarea - text negru explicit */
#doctorForm textarea,
.doctor-form-modern textarea {
    min-height: 60px !important;
    resize: vertical !important;
    color: #1e293b !important;
    line-height: 1.5 !important;
}

/* Placeholder */
#doctorForm input::placeholder,
#doctorForm textarea::placeholder,
.doctor-form-modern input::placeholder,
.doctor-form-modern textarea::placeholder {
    color: #94a3b8 !important;
    opacity: 1 !important;
}

/* ============================================================================
   SPECIALIZARE SELECT WRAPPER
   ============================================================================ */
.specialization-select-wrapper {
    display: flex !important;
    gap: 8px !important;
    align-items: stretch !important;
}

.specialization-select-wrapper select {
    flex: 1 !important;
}

.btn-add-specialization {
    padding: 10px 14px !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    flex-shrink: 0 !important;
}

.btn-add-specialization:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3) !important;
}

.form-hint {
    display: block !important;
    font-size: 11px !important;
    color: #94a3b8 !important;
    margin-top: 4px !important;
    font-style: italic !important;
}

/* ============================================================================
   COLOR PICKER
   ============================================================================ */
.color-picker-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.color-picker-wrapper input[type="color"] {
    width: 50px !important;
    height: 40px !important;
    padding: 2px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    background: transparent !important;
}

.color-preview {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    border: 2px solid #e2e8f0 !important;
}

/* ============================================================================
   CHECKBOXES - MODERNE
   ============================================================================ */
#doctorForm .form-checkboxes,
.doctor-form-modern .form-checkboxes {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding-top: 8px !important;
}

.checkbox-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    padding: 8px 12px !important;
    background: #f8fafc !important;
    border-radius: 8px !important;
    border: 2px solid #e2e8f0 !important;
    transition: all 0.2s ease !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #475569 !important;
}

.checkbox-label:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

.checkbox-label:has(input:checked) {
    background: #ecfeff !important;
    border-color: #0891b2 !important;
    color: #0e7490 !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: #0891b2 !important;
    flex-shrink: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ============================================================================
   FORM ACTIONS - STICKY FOOTER
   ============================================================================ */
#doctorForm .form-actions,
.doctor-form-modern .form-actions {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #ffffff !important;
    padding: 12px 16px !important;
    display: flex !important;
    gap: 10px !important;
    justify-content: stretch !important;
    border-top: 1px solid #e2e8f0 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 100 !important;
}

#doctorForm .form-actions button,
.doctor-form-modern .form-actions button {
    flex: 1 !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

#doctorForm .form-actions .btn-secondary,
.doctor-form-modern .form-actions .btn-secondary {
    background: #f1f5f9 !important;
    border: 2px solid #e2e8f0 !important;
    color: #64748b !important;
}

#doctorForm .form-actions .btn-secondary:hover,
.doctor-form-modern .form-actions .btn-secondary:hover {
    background: #e2e8f0 !important;
}

#doctorForm .form-actions .btn-primary,
.doctor-form-modern .form-actions .btn-primary {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(8, 145, 178, 0.3) !important;
}

#doctorForm .form-actions .btn-primary:hover,
.doctor-form-modern .form-actions .btn-primary:hover {
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* ============================================================================
   MOBILE OPTIMIZATIONS - FORMULAR DOCTOR
   ============================================================================ */
@media (max-width: 599px) {
    /* Grid-uri pe o coloană */
    #doctorForm .form-grid-2,
    .doctor-form-modern .form-grid-2,
    #doctorForm .form-grid-3,
    .doctor-form-modern .form-grid-3 {
        grid-template-columns: 1fr !important;
    }
    
    /* Secțiuni mai compacte */
    #doctorForm .form-section,
    .doctor-form-modern .form-section {
        padding: 12px !important;
        margin-bottom: 12px !important;
        border-radius: 10px !important;
    }
    
    #doctorForm .form-section-title,
    .doctor-form-modern .form-section-title {
        font-size: 13px !important;
        margin-bottom: 12px !important;
        padding-bottom: 8px !important;
    }
    
    /* Labels */
    #doctorForm .form-group label,
    .doctor-form-modern .form-group label {
        font-size: 10px !important;
    }
    
    /* Inputs */
    #doctorForm .form-input,
    .doctor-form-modern .form-input,
    #doctorForm input,
    #doctorForm select,
    .doctor-form-modern input,
    .doctor-form-modern select {
        padding: 12px !important;
        font-size: 16px !important; /* Previne zoom pe iOS */
    }
    
    /* Textarea mai mică */
    #doctorForm textarea,
    .doctor-form-modern textarea {
        min-height: 50px !important;
    }
    
    /* Checkboxes */
    .checkbox-label {
        padding: 10px !important;
        font-size: 12px !important;
    }
    
    /* Form actions */
    #doctorForm .form-actions,
    .doctor-form-modern .form-actions {
        padding: 10px 12px !important;
        gap: 8px !important;
    }
    
    #doctorForm .form-actions button,
    .doctor-form-modern .form-actions button {
        padding: 14px 12px !important;
        font-size: 13px !important;
    }
}

/* ============================================================================
   TABLET OPTIMIZATIONS
   ============================================================================ */
@media (min-width: 600px) and (max-width: 899px) {
    #doctorForm .form-grid-3,
    .doctor-form-modern .form-grid-3 {
        grid-template-columns: 1fr 1fr !important;
    }
    
    #doctorForm .form-grid-3 > *:last-child {
        grid-column: span 2 !important;
    }
}

/* ============================================================================
   DESKTOP - FORM ACTIONS RELATIVE
   ============================================================================ */
@media (min-width: 900px) {
    #doctorForm .form-actions,
    .doctor-form-modern .form-actions {
        position: sticky !important;
        bottom: 0 !important;
        left: auto !important;
        right: auto !important;
        margin-top: 20px !important;
        border-radius: 12px !important;
        justify-content: flex-end !important;
    }
    
    #doctorForm .form-actions button,
    .doctor-form-modern .form-actions button {
        flex: 0 !important;
        min-width: 150px !important;
    }
}

/* ============================================================================
   FIX CRITIC: TEXTAREA NOTE - TEXT NEGRU EXPLICIT
   ============================================================================ */
/* Fix pentru textarea - forțează text negru pe orice dispozitiv */
#doctor_agent_notes,
#doctorForm #doctor_agent_notes,
.doctor-form-modern #doctor_agent_notes,
#doctorForm textarea#doctor_agent_notes,
.medical-modal textarea#doctor_agent_notes,
.medical-modal-body textarea#doctor_agent_notes,
textarea[id="doctor_agent_notes"] {
    color: #1e293b !important;
    background-color: #f8fafc !important;
    -webkit-text-fill-color: #1e293b !important;
}

/* Fix pentru orice textarea din formular */
#doctorForm textarea,
.doctor-form-modern textarea,
.medical-modal #doctorForm textarea {
    color: #1e293b !important;
    -webkit-text-fill-color: #1e293b !important;
}

/* ============================================================================
   SELECT STYLING - DIFERENȚIAT MOBILE VS DESKTOP
   ============================================================================ */

/* MOBILE: Dropdown nativ pentru o experiență mai bună */
@media (max-width: 768px) {
    /* Select pe mobile - folosește dropdown-ul nativ al sistemului */
    #doctorForm select,
    .doctor-form-modern select,
    .medical-modal select,
    #doctor_specialization,
    .specialization-select-wrapper select,
    .medical-modal-content select {
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        appearance: menulist !important;
        background-image: none !important;
        padding-right: 12px !important;
        min-height: 48px !important;
        font-size: 16px !important; /* Previne zoom pe iOS */
    }
    
    /* Asigurăm că opțiunile sunt vizibile și ușor de citit */
    #doctorForm select option,
    .doctor-form-modern select option,
    #doctor_specialization option,
    .medical-modal select option,
    .medical-modal-content select option {
        background-color: #ffffff !important;
        color: #1e293b !important;
        padding: 14px 12px !important;
        font-size: 16px !important;
        -webkit-text-fill-color: #1e293b !important;
        line-height: 1.5 !important;
    }
    
    /* Selected option - să fie vizibil și evidențiat */
    #doctorForm select option:checked,
    .doctor-form-modern select option:checked,
    #doctor_specialization option:checked,
    .medical-modal select option:checked {
        background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%) !important;
        color: #ffffff !important;
        -webkit-text-fill-color: #ffffff !important;
    }
}

/* DESKTOP: Dropdown personalizat cu săgeată custom */
@media (min-width: 769px) {
    #doctorForm select,
    .doctor-form-modern select,
    .medical-modal select,
    #doctor_specialization,
    .specialization-select-wrapper select {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 10px center !important;
        background-size: 18px !important;
        padding-right: 40px !important;
        cursor: pointer !important;
    }
    
    #doctorForm select:hover,
    .doctor-form-modern select:hover {
        border-color: #0891b2 !important;
    }
}
