/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    --primary-color: #10b981;    /* Vert médical Dentisto */
    --primary-hover: #059669;
    --bg-main: #f4f7f6;          /* Fond gris très clair */
    --bg-surface: #ffffff;       /* Fond blanc des cartes */
    --text-dark: #1e293b;        /* Texte principal */
    --text-muted: #64748b;       /* Texte secondaire */
    --border-color: #e2e8f0;     /* Lignes séparatrices */
    --sidebar-width: 250px;
    --navbar-height: 60px;
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-dark);
    height: 100vh;
    overflow: hidden;
}

/* ==========================================================================
   2. LAYOUT PRINCIPAL, HEADER & SIDEBAR
   ========================================================================== */
.app-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.main-layout {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Navbar Top */
.top-navbar {
    height: var(--navbar-height);
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    color: white;
    z-index: 20;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    width: var(--sidebar-width);
}

.logo-icon { font-size: 1.5rem; }
.logo-text { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.5px; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
}

.user-name { font-size: 0.9rem; font-weight: 500; }

.icon-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.icon-btn:hover { transform: scale(1.1); }

.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    background-color: rgba(255,255,255,0.1);
    padding: 6px 10px;
    border-radius: 4px;
}
.text-xs { font-size: 0.7rem; }

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-surface);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 12px;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-item i {
    width: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.nav-item:hover { background-color: #f8fafc; }
.nav-item.active { background-color: var(--primary-color); color: white; }
.nav-item.active i { color: white; }

.sidebar-footer {
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.logout-btn:hover { background-color: #f1f5f9; }

/* Zone de contenu principale */
.content-area {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
}

/* ==========================================================================
   EN-TÊTES DE PAGES (DASHBOARD HEADER)
   ========================================================================== */
.dashboard-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 24px; 
}

.dashboard-header h1 { 
    margin: 0; /* Supprime la marge par défaut pour un alignement parfait */
    font-size: 1.4rem; 
    font-weight: 600; 
    color: var(--text-dark); 
}
/* ==========================================================================
   3. GRILLES & CARTES (CARDS)
   ========================================================================== */
.dashboard-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-row { display: grid; gap: 20px; }
.stats-row { grid-template-columns: repeat(4, 1fr); }
.charts-row { grid-template-columns: 2fr 1fr; }
.timeline-row { grid-template-columns: 1fr; }

.card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}
.card-header h3 { font-size: 1rem; font-weight: 600; }

.card-body {
    padding: 20px;
    flex: 1;
}

.stat-card { padding: 20px; min-height: 120px; }
.stat-card h3 { font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }
.chart-card .card-body, .list-card .card-body { min-height: 250px; }
.timeline-card .card-body { min-height: 200px; }

/* ==========================================================================
   4. COMPOSANTS GLOBAUX (Boutons, Inputs, Badges, Tableaux)
   ========================================================================== */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}
.btn-primary:hover { background-color: var(--primary-hover); }

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.btn-icon:hover { background-color: #f1f5f9; color: var(--text-dark); }
.btn-icon.text-red:hover { color: #ef4444; background-color: #fee2e2; }

.icon-btn-gray {
    background: white;
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.icon-btn-gray:hover { background: #f1f5f9; color: var(--text-dark); }

.patients-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background-color: white;
}

.search-box { position: relative; flex: 1; max-width: 400px; }
.search-box i {
    position: absolute; left: 14px; top: 50%;
    transform: translateY(-50%); color: var(--text-muted);
}
.search-box input {
    width: 100%; padding: 10px 10px 10px 40px;
    border: 1px solid var(--border-color); border-radius: 6px;
    outline: none; font-family: inherit; font-size: 0.9rem;
    transition: border-color 0.2s;
}
.search-box input:focus { border-color: var(--primary-color); }

.custom-select {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: white;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
}

.custom-checkbox {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; cursor: pointer; color: var(--text-dark);
}
.custom-checkbox input {
    width: 16px; height: 16px; accent-color: var(--primary-color); cursor: pointer;
}

.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-green { background-color: #d1fae5; color: #059669; }
.badge-orange { background-color: #fef3c7; color: #d97706; }
.badge-gray { background-color: #f1f5f9; color: #475569; }

.treatment-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
.tag-blue { background-color: #e0f2fe; color: #0284c7; }
.tag-orange { background-color: #ffedd5; color: #ea580c; }
.tag-purple { background-color: #f3e8ff; color: #9333ea; }

.table-responsive { overflow-x: auto; width: 100%; }
.patient-table { width: 100%; border-collapse: collapse; text-align: left; }
.patient-table th, .patient-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.patient-table th {
    background-color: #f8fafc; color: var(--text-muted);
    font-weight: 600; font-size: 0.8rem; text-transform: uppercase;
}
.patient-table tbody tr:hover { background-color: #f8fafc; }

.patient-name-cell { display: flex; align-items: center; gap: 12px; }
.patient-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background-color: #e2e8f0; color: var(--text-dark);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 0.9rem;
}

.pagination-container {
    display: flex; justify-content: space-between; align-items: center; padding: 16px 20px;
}
.pagination { display: flex; gap: 6px; align-items: center; }
.btn-page {
    min-width: 32px; height: 32px; padding: 0 8px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-color); background-color: white;
    border-radius: 4px; cursor: pointer; color: var(--text-dark);
    font-size: 0.9rem; transition: all 0.2s;
}
.btn-page:hover:not(.disabled) { background-color: #f1f5f9; }
.btn-page.active { background-color: var(--primary-color); color: white; border-color: var(--primary-color); }
.btn-page.disabled { color: var(--text-muted); opacity: 0.5; cursor: not-allowed; }
.btn-dots { color: var(--text-muted); padding: 0 4px; }

/* ==========================================================================
   5. MODULES SPÉCIFIQUES (RDV, Imagerie, etc.)
   ========================================================================== */
.rdv-layout { display: flex; gap: 24px; align-items: flex-start; }
.rdv-sidebar { width: 300px; flex-shrink: 0; }
.rdv-main { flex: 1; }

.mini-calendar { font-size: 0.85rem; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
.cal-dates { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.cal-dates span { padding: 8px 0; border-radius: 6px; cursor: pointer; color: var(--text-dark); }
.cal-dates span:hover:not(.active-date):not(.muted) { background-color: #f1f5f9; }
.cal-dates span.muted { color: #cbd5e1; }
.cal-dates span.active-date { background-color: var(--primary-color); color: white; font-weight: 600; }

.schedule-header { display: flex; justify-content: space-between; align-items: center; background-color: #f8fafc; }
.schedule-header h2 { font-size: 1.1rem; color: var(--text-dark); }

.schedule-body { padding: 0; display: flex; flex-direction: column; }
.time-slot { display: flex; border-bottom: 1px solid #f1f5f9; }
.time-slot:last-child { border-bottom: none; }
.time { width: 80px; padding: 20px; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); border-right: 1px solid #f1f5f9; text-align: right; }

.appointment-card {
    flex: 1; margin: 10px 20px; padding: 16px; background-color: white;
    border: 1px solid var(--border-color); border-left: 4px solid var(--primary-color);
    border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    display: flex; justify-content: space-between; align-items: center;
}
.status-confirmed { border-left-color: #10b981; }
.status-waiting { border-left-color: #f59e0b; }
.status-pending { border-left-color: #94a3b8; }

.apt-left { display: flex; flex-direction: column; gap: 4px; width: 30%; }
.apt-time { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.apt-patient { font-weight: 700; color: var(--text-dark); font-size: 1.05rem; }
.apt-details { font-size: 0.8rem; color: var(--text-muted); }
.apt-middle { flex: 1; display: flex; justify-content: flex-start; }
.apt-right { display: flex; align-items: center; gap: 16px; }

.slot-empty .appointment-placeholder {
    flex: 1; margin: 10px 20px; padding: 16px;
    border: 1px dashed #cbd5e1; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 0.9rem; cursor: pointer; transition: background-color 0.2s;
}
.slot-empty .appointment-placeholder:hover { background-color: #f8fafc; }

.imageries-layout { display: flex; gap: 24px; align-items: flex-start; }
.imageries-sidebar { width: 300px; flex-shrink: 0; }
.imageries-main { flex: 1; }

.patient-list-scrollable { max-height: 500px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.patient-list-item {
    display: flex; align-items: center; gap: 12px; padding: 10px;
    border-radius: 8px; cursor: pointer; transition: background-color 0.2s; border: 1px solid transparent;
}
.patient-list-item:hover { background-color: #f8fafc; }
.patient-list-item.active { background-color: #f0fdf4; border-color: #bbf7d0; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.gallery-item {
    border: 1px solid var(--border-color); border-radius: 8px;
    overflow: hidden; background-color: white; transition: box-shadow 0.2s, transform 0.2s;
}
.gallery-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.05); transform: translateY(-2px); }

.gallery-img-container {
    width: 100%; height: 150px; background-color: #1e293b;
    position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.gallery-img-container img { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-actions {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center;
    gap: 10px; opacity: 0; transition: opacity 0.2s;
}
.gallery-item:hover .gallery-actions { opacity: 1; }

.btn-icon-light {
    background-color: white; color: var(--text-dark); border: none;
    width: 36px; height: 36px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; cursor: pointer; transition: transform 0.1s;
}
.btn-icon-light:hover { transform: scale(1.1); }
.gallery-info { padding: 12px; }
.gallery-info h4 { font-size: 0.9rem; color: var(--text-dark); margin-bottom: 4px; }

/* ==========================================================================
   6. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .charts-row { grid-template-columns: 1fr; }
    .rdv-layout, .imageries-layout { flex-direction: column; }
    .rdv-sidebar, .imageries-sidebar { width: 100%; display: flex; gap: 20px; }
    .rdv-sidebar .card, .imageries-sidebar .card { flex: 1; }
}

@media (max-width: 768px) {
    .stats-row { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .rdv-sidebar, .imageries-sidebar { flex-direction: column; }
}

/* ==========================================================================
   7. DOSSIER PATIENT & ONGLETS
   ========================================================================== */
.dossier-view { animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

.patient-header-banner { background-color: white; padding: 20px 32px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }
.patient-quick-stats { display: flex; gap: 24px; border-left: 1px solid var(--border-color); padding-left: 24px; }
.p-stat { display: flex; flex-direction: column; }
.p-stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.p-stat-value { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }

.dossier-body { display: flex; flex: 1; overflow: hidden; background-color: var(--bg-main); }
.dossier-nav { width: 220px; background-color: white; border-right: 1px solid var(--border-color); padding: 20px 0; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.d-tab-btn { background: none; border: none; width: 100%; text-align: left; padding: 12px 24px; font-size: 0.95rem; font-weight: 500; color: var(--text-muted); cursor: pointer; display: flex; align-items: center; gap: 12px; transition: all 0.2s; border-left: 3px solid transparent; }
.d-tab-btn:hover { background-color: #f8fafc; color: var(--text-dark); }
.d-tab-btn.active { background-color: #f0fdf4; color: #10b981; border-left-color: #10b981; font-weight: 600; }

.dossier-content-area { flex: 1; overflow-y: auto; padding: 24px 32px; }
.tab-pane { display: none; animation: fadeIn 0.3s ease; }
.tab-pane.active { display: block; }

/* ==========================================================================
   8. MOTEUR 3D ANATOMIQUE (COURONNES & RACINES)
   ========================================================================== */
.scene-3d { width: 100%; height: 600px; background: radial-gradient(circle at center, #1e293b 0%, #020617 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; perspective: 1200px; position: relative; overflow: hidden; box-shadow: inset 0 0 100px rgba(0,0,0,0.9); cursor: grab; user-select: none; margin-top: 16px; }
.scene-3d:active { cursor: grabbing; }

.world-3d { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; will-change: transform; }
.jaw-arch { position: absolute; top: 50%; left: 50%; width: 0; height: 0; transform-style: preserve-3d; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.gum-line { position: absolute; top: 50%; left: 50%; width: 260px; height: 320px; border: 25px solid rgba(225, 29, 72, 0.35); border-radius: 50% 50% 10% 10% / 60% 60% 10% 10%; transform: translate(-50%, -50%) translateZ(-18px); pointer-events: none; }
.jaw-upper { transform: translate3d(0, 0, 40px); }
.jaw-lower { transform: translate3d(0, 0, -40px); transform-origin: center -100px; }

/* --- Structure d'une dent (Couronne + Racine) --- */
.tooth-box { position: absolute; height: 50px; transform-style: preserve-3d; cursor: pointer; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.tooth-box:hover { transform: translateZ(25px) scale(1.15) !important; z-index: 100; }

.t-part { position: absolute; width: 100%; transform-style: preserve-3d; }
.t-crown { top: 0; height: 25px; }
.t-root { top: 26px; height: 24px; } /* Décalé sous la couronne */

/* --- Esthétique des faces --- */
.t-face { position: absolute; display: flex; align-items: center; justify-content: center; font-size: 8px; color: rgba(0,0,0,0.1); transition: all 0.3s ease; }

/* Email de la couronne (Blanc) */
.t-crown .t-face { background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%); border: 1px solid rgba(255,255,255,0.9); box-shadow: inset 0 0 5px rgba(148, 163, 184, 0.3); border-radius: 4px; }
/* Racine (Jaune / Osseux) */
.t-root .t-face { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border: 1px solid rgba(217, 119, 6, 0.3); border-radius: 2px 2px 8px 8px; }

.t-front, .t-back, .t-left, .t-right { height: 100%; }
.t-top { background: radial-gradient(circle at center, #94a3b8 0%, #ffffff 70%) !important; box-shadow: inset 0 0 8px rgba(0,0,0,0.3) !important; border-radius: 4px; height: 100%; }

/* --- Couleurs Cliniques des Soins (Haute Priorité) --- */
.t-face.face-composite { background: #10b981 !important; box-shadow: inset 0 0 10px #065f46 !important; border-color: #059669 !important; }
.t-face.face-carie { background: #ef4444 !important; box-shadow: inset 0 0 10px #991b1b !important; border-color: #b91c1c !important; }
.t-face.face-endo { background: #8b5cf6 !important; box-shadow: inset 0 0 15px #4c1d95 !important; border-color: #5b21b6 !important; }
.t-face.face-couronne { background: linear-gradient(135deg, #fcd34d 0%, #d97706 100%) !important; border-color: #b45309 !important; }
.t-face.face-implant { background: #14b8a6 !important; border-color: #0f766e !important; }

.tooth-box.tooth-extracted .t-face { background: rgba(239, 68, 68, 0.15) !important; border-color: rgba(239, 68, 68, 0.5) !important; box-shadow: none !important; }
.tooth-box.tooth-extracted::after { content: '\f00d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%) translateZ(15px); color: #ef4444; font-size: 24px; pointer-events: none; }


/* Numérotation de la dent */
.t-num { position: absolute; top: -30px; left: 50%; transform: translateX(-50%) rotateX(-90deg); color: rgba(255,255,255,0.7); font-weight: 700; font-size: 0.8rem; text-shadow: 0 4px 8px rgba(0,0,0,1); pointer-events: none; background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; user-select: none; }

/* HUD / Panneau de contrôle 3D */
.hud-3d { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); background: rgba(15, 23, 42, 0.7); padding: 15px 30px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); display: flex; gap: 25px; align-items: center; color: white; backdrop-filter: blur(12px); z-index: 100; box-shadow: 0 10px 30px rgba(0,0,0,0.5); pointer-events: auto; }
.hud-btn { background: #10b981; color: white; border: none; padding: 8px 16px; border-radius: 20px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.hud-btn:hover { background: #059669; transform: scale(1.05); }

/* ==========================================================================
   9. MODALE (POP-UP RENDEZ-VOUS)
   ========================================================================== */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px);
    display: none; justify-content: center; align-items: center; z-index: 1000;
    opacity: 0; transition: opacity 0.3s;
}
.modal-overlay.active { display: flex; opacity: 1; }

.modal-content {
    background: white; width: 100%; max-width: 500px;
    border-radius: 12px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.active .modal-content { transform: translateY(0); }

.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border-color); }
.modal-header h2 { margin: 0; font-size: 1.2rem; color: var(--text-dark); }
.btn-close { background: none; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-muted); transition: color 0.2s; }
.btn-close:hover { color: #ef4444; }

.modal-body { padding: 24px; }
.form-group { margin-bottom: 16px; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-control { width: 100%; padding: 10px 12px; border: 1px solid var(--border-color); border-radius: 6px; font-family: inherit; font-size: 0.95rem; outline: none; }
.form-control:focus { border-color: var(--primary-color); }