/* ==============================================
   CHARTE GRAPHIQUE ABARAK
   Application de géolocalisation
   ============================================== */

/* Réinitialisation */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables ABARAK */
:root {
    /* Bleu marque */
    --brand-blue: #0070C0;
    --brand-blue-alt: #0073b6;

    /* Accents bleu */
    --accent-blue: #4dbdff;
    --accent-blue-pale: #9fdcff;

    /* Boutons primaires (bleu) */
    --primary-btn: #0070C0;
    --primary-btn-hover: #005a9e;

    /* Neutres */
    --neutral-50: #f8f9fa;
    --neutral-200: #e6f4f1;
    --neutral-card: #f3f9f9;

    /* Bordures */
    --border-color: #dfe1e5;

    /* Texte */
    --text-primary: #111111;
    --text-secondary: #555555;
    --text-light: #777777;
    --text-white: #ffffff;

    /* Fond */
    --bg-white: #ffffff;

    /* Ombres ABARAK */
    --shadow-search: 0px 1px 6px rgba(32, 33, 36, 0.28);
    --shadow-card: 0 2px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);

    /* Arrondis */
    --radius-pill: 24px;
    --radius-card: 10px;
    --radius-btn: 8px;

    /* Messages */
    --error-bg: #fef2f2;
    --error-text: #b91c1c;
    --error-border: #fecaca;
    --success-bg: #e6f4f1;
    --success-text: #0070C0;
    --success-border: #9fdcff;
    --info-bg: #e6f4f1;
    --info-text: #0070C0;
    --info-border: #4dbdff;
}

/* Typographie ABARAK : Arial */
body {
    font-family: Arial, sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========== HEADER ========== */
header {
    background: var(--bg-white);
    color: var(--text-primary);
    padding: 20px 32px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== IDENTITÉ ABARAK ========== */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.brand-symbol .u {
    font-family: Verdana, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-blue);
    position: absolute;
    opacity: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
    line-height: 1;
    /* Tous les U partent du centre */
    top: 50%;
    left: 50%;
}

/* U1 : en haut (0°) - pointe vers le haut */
.brand-symbol .u1 {
    transform: translate(-50%, -100%) rotate(0deg);
    transform-origin: center bottom;
}

/* U2 : en bas à gauche (-120°) */
.brand-symbol .u2 {
    transform: translate(-50%, -100%) rotate(-120deg);
    transform-origin: center bottom;
}

/* U3 : en bas à droite (120°) */
.brand-symbol .u3 {
    transform: translate(-50%, -100%) rotate(120deg);
    transform-origin: center bottom;
}

/* Animations d'apparition pour chaque U */
.brand-symbol .u1 {
    animation:
        appearU1 2s ease 0.9s forwards,
        breatheU1 4.8s ease-in-out 2.9s infinite;
}

.brand-symbol .u2 {
    animation:
        appearU2 2s ease 1.45s forwards,
        breatheU2 4.8s ease-in-out 3.45s infinite;
}

.brand-symbol .u3 {
    animation:
        appearU3 2s ease 2.05s forwards,
        breatheU3 4.8s ease-in-out 4.05s infinite;
}

/* U1 : apparition avec rotation vers position finale (0°) */
@keyframes appearU1 {
    0% {
        opacity: 0;
        transform: translate(-50%, -100%) rotate(-180deg) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -100%) rotate(0deg) scale(1);
    }
}

/* U2 : apparition avec rotation vers position finale (-120°) */
@keyframes appearU2 {
    0% {
        opacity: 0;
        transform: translate(-50%, -100%) rotate(60deg) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -100%) rotate(-120deg) scale(1);
    }
}

/* U3 : apparition avec rotation vers position finale (120°) */
@keyframes appearU3 {
    0% {
        opacity: 0;
        transform: translate(-50%, -100%) rotate(-60deg) scale(0.3);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -100%) rotate(120deg) scale(1);
    }
}

/* Respiration U1 (maintient rotation 0°) */
@keyframes breatheU1 {
    0%, 100% {
        transform: translate(-50%, -100%) rotate(0deg) scale(1);
        filter: brightness(1);
    }
    50% {
        transform: translate(-50%, -100%) rotate(0deg) scale(1.05);
        filter: brightness(1.15);
        text-shadow: 0 0 8px rgba(0, 112, 192, 0.5);
    }
}

/* Respiration U2 (maintient rotation -120°) */
@keyframes breatheU2 {
    0%, 100% {
        transform: translate(-50%, -100%) rotate(-120deg) scale(1);
        filter: brightness(1);
    }
    50% {
        transform: translate(-50%, -100%) rotate(-120deg) scale(1.05);
        filter: brightness(1.15);
        text-shadow: 0 0 8px rgba(0, 112, 192, 0.5);
    }
}

/* Respiration U3 (maintient rotation 120°) */
@keyframes breatheU3 {
    0%, 100% {
        transform: translate(-50%, -100%) rotate(120deg) scale(1);
        filter: brightness(1);
    }
    50% {
        transform: translate(-50%, -100%) rotate(120deg) scale(1.05);
        filter: brightness(1.15);
        text-shadow: 0 0 8px rgba(0, 112, 192, 0.5);
    }
}

.brand-name {
    font-family: Arial, sans-serif;
    font-size: 26px;
    font-weight: 650;
    color: var(--brand-blue);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    animation: fadeInBrand 2s ease 2.5s forwards;
}

@keyframes fadeInBrand {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

header h1:not(.brand-name) {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 16px;
}

.view-toggle-btn {
    background: var(--neutral-50);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-toggle-btn:hover {
    background: var(--neutral-200);
    border-color: var(--accent-blue);
}

.view-toggle-btn:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.view-toggle-btn i {
    color: var(--brand-blue);
}

/* ========== CONTENEUR PRINCIPAL ========== */
.container {
    display: flex;
    max-width: 1400px;
    margin: 24px auto;
    height: calc(100vh - 180px);
    gap: 24px;
    padding: 0 24px;
}

/* ========== SIDEBAR ========== */
.sidebar {
    width: 380px;
    background: var(--neutral-card);
    padding: 24px;
    border-radius: var(--radius-card);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-card);
    overflow-y: auto;
    max-height: 100%;
}

.sidebar-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 4px;
}

.controls {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.controls label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: block;
}

/* ========== INPUTS & SELECTS ========== */
.controls input[type='text'] {
    padding: 14px 18px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all 200ms ease;
    box-shadow: var(--shadow-search);
}

.controls input[type='text']::placeholder {
    color: var(--text-light);
}

.controls input[type='text']:hover {
    border-color: var(--accent-blue);
}

.controls input[type='text']:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 112, 192, 0.2);
}

.controls select {
    padding: 14px 18px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-btn);
    background: var(--bg-white);
    color: var(--text-primary);
    transition: all 200ms ease;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%230070C0" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}

.controls select:hover {
    border-color: var(--accent-blue);
}

.controls select:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(0, 112, 192, 0.2);
}

/* ========== LIEUX SUGGÉRÉS ========== */
.suggested-places {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.places-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.place-chip {
    background: var(--bg-white);
    color: var(--brand-blue);
    border: 1px solid var(--accent-blue-pale);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 200ms ease;
    white-space: nowrap;
}

.place-chip:hover {
    background: var(--neutral-200);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-card);
}

.place-chip:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* ========== BOUTONS DE RAYON ========== */
.radius-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radius-btn-group {
    display: flex;
    gap: 10px;
}

.radius-btn {
    flex: 1;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    font-family: Arial, sans-serif;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-btn);
    background: var(--bg-white);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 200ms ease;
}

.radius-btn:hover {
    border-color: var(--accent-blue);
    background: var(--neutral-200);
}

.radius-btn:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.radius-btn.active {
    background: var(--primary-btn);
    color: var(--text-white);
    border-color: var(--primary-btn);
}

.radius-btn.active:hover {
    background: var(--primary-btn-hover);
}

/* ========== BOUTONS PRINCIPAUX (Bleu) ========== */
.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.controls button,
.btn-group button {
    flex: 1;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    border: none;
    border-radius: var(--radius-btn);
    background: var(--primary-btn);
    color: var(--text-white);
    cursor: pointer;
    transition: all 200ms ease;
}

.controls button:hover,
.btn-group button:hover {
    background: var(--primary-btn-hover);
    box-shadow: var(--shadow-hover);
}

.controls button:active,
.btn-group button:active {
    transform: translateY(1px);
}

.controls button:focus,
.btn-group button:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* ========== MESSAGES ========== */
#message {
    padding: 14px 18px;
    border-radius: var(--radius-card);
    display: none;
    font-size: 14px;
    font-weight: 500;
    animation: fadeIn 200ms ease;
    border: 1px solid;
}

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

#message.error {
    background: var(--error-bg);
    color: var(--error-text);
    border-color: var(--error-border);
}

#message.success {
    background: var(--success-bg);
    color: var(--success-text);
    border-color: var(--success-border);
}

#message.info {
    background: var(--info-bg);
    color: var(--info-text);
    border-color: var(--info-border);
}

/* ========== RÉSULTATS GÉOCODAGE ========== */
#geocodeResults {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#geocodeResults p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 4px;
}

#geocodeResults button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    background: var(--bg-white);
    cursor: pointer;
    text-align: left;
    transition: all 200ms ease;
    color: var(--text-primary);
    font-weight: 500;
}

#geocodeResults button::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--brand-blue);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

#geocodeResults button:hover {
    background: var(--neutral-200);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-card);
}

#geocodeResults button:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* ========== SECTION HISTORIQUE ========== */
.history-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.history-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.history-header label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.history-stats {
    font-size: 13px;
    color: var(--text-secondary);
    background: var(--bg-white);
    padding: 6px 12px;
    border-radius: var(--radius-btn);
    display: inline-block;
    width: fit-content;
    border: 1px solid var(--border-color);
}

.history-actions {
    display: flex;
    gap: 10px;
}

.history-btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    font-family: Arial, sans-serif;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-btn);
    background: var(--bg-white);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 200ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.history-btn:hover {
    border-color: var(--accent-blue);
    background: var(--neutral-200);
}

.history-btn:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.history-btn-danger:hover {
    border-color: var(--error-border);
    background: var(--error-bg);
    color: var(--error-text);
}

.history-btn i {
    font-size: 12px;
    color: var(--brand-blue);
}

.history-btn:hover i {
    color: inherit;
}

/* ========== ZONE CARTE ========== */
.map-container {
    flex: 1;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-card);
    background: var(--neutral-50);
    position: relative;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

/* Indicateur de chargement */
#map.loading::before {
    content: 'Chargement de la carte...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: var(--bg-white);
    padding: 20px 28px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    font-weight: 500;
    color: var(--brand-blue);
    border: 1px solid var(--border-color);
}

/* ========== BOUTON RECHERCHER DANS CETTE ZONE ========== */
.search-area-btn {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: var(--primary-btn);
    color: var(--text-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: all 200ms ease;
    box-shadow: var(--shadow-search);
    display: none;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-area-btn:hover {
    background: var(--primary-btn-hover);
    box-shadow: var(--shadow-hover);
}

.search-area-btn:active {
    transform: translateX(-50%) translateY(1px);
}

.search-area-btn:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

.search-area-btn.visible {
    display: flex;
    animation: slideDown 200ms ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.search-area-btn i {
    font-size: 13px;
}

/* ========== CONTRÔLES LEAFLET ========== */
.leaflet-control-zoom {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-btn) !important;
    box-shadow: var(--shadow-search) !important;
    overflow: hidden;
}

.leaflet-control-zoom a {
    background: var(--bg-white) !important;
    color: var(--brand-blue) !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    transition: all 200ms ease !important;
}

.leaflet-control-zoom a:hover {
    background: var(--neutral-200) !important;
    color: var(--primary-btn) !important;
}

.leaflet-control-zoom a:focus {
    outline: 2px solid var(--accent-blue) !important;
    outline-offset: -2px !important;
}

.leaflet-control-zoom-in {
    border-bottom: 1px solid var(--border-color) !important;
    border-radius: var(--radius-btn) var(--radius-btn) 0 0 !important;
}

.leaflet-control-zoom-out {
    border-radius: 0 0 var(--radius-btn) var(--radius-btn) !important;
}

.leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.9) !important;
    font-size: 11px !important;
    color: var(--text-secondary) !important;
    padding: 4px 8px !important;
    border-radius: 6px 0 0 0 !important;
}

.leaflet-control-attribution a {
    color: var(--brand-blue) !important;
}

/* ========== FOOTER ========== */
footer {
    background: var(--neutral-card);
    color: var(--text-secondary);
    text-align: center;
    padding: 16px;
    border-top: 1px solid var(--border-color);
}

footer p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-blue);
    letter-spacing: 0.06em;
}

/* ========== VUE MOBILE SIMULÉE ========== */
body.mobile-view {
    background: #1a1a1a;
    overflow: hidden;
}

body.mobile-view::before {
    content: 'Aperçu Mobile';
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
    z-index: 1000;
    background: rgba(0, 112, 192, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
}

body.mobile-view header,
body.mobile-view .container,
body.mobile-view footer {
    max-width: 375px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 0 8px #333;
    border-radius: 0;
}

body.mobile-view header {
    border-radius: 24px 24px 0 0;
    margin-top: 56px;
}

body.mobile-view footer {
    border-radius: 0 0 24px 24px;
}

body.mobile-view .container {
    flex-direction: column;
    height: auto;
    min-height: calc(100vh - 220px);
    max-height: calc(100vh - 160px);
    padding: 0;
    margin: 0 auto;
    gap: 0;
    background: var(--bg-white);
    overflow-y: auto;
}

body.mobile-view .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    overflow-y: visible;
    max-height: none;
    flex-shrink: 0;
}

body.mobile-view .map-container {
    min-height: 450px;
    height: 450px;
    flex-shrink: 0;
    width: 100%;
}

body.mobile-view #map {
    border-radius: 0;
    height: 450px;
    min-height: 450px;
    border: none;
    box-shadow: none;
}

body.mobile-view header h1 {
    font-size: 18px;
}

body.mobile-view .brand-name {
    font-size: 18px;
}

body.mobile-view .brand-symbol {
    width: 28px;
    height: 28px;
}

body.mobile-view .brand-symbol .u {
    font-size: 13px;
}

body.mobile-view .header-container {
    flex-wrap: wrap;
    padding: 0;
}

body.mobile-view nav ul {
    flex-wrap: wrap;
}

body.mobile-view .view-toggle-btn {
    font-size: 13px;
    padding: 8px 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    body.mobile-view {
        background: var(--bg-white);
        overflow: auto;
    }

    body.mobile-view::before {
        display: none;
    }

    body.mobile-view header,
    body.mobile-view .container,
    body.mobile-view footer {
        max-width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
    }

    body.mobile-view header {
        border-radius: 0;
    }

    body.mobile-view footer {
        border-radius: 0;
    }

    body.mobile-view .container {
        height: auto;
        max-height: none;
    }

    .container {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 16px;
    }

    .sidebar {
        width: 100%;
        border-right: none;
        padding: 20px;
        border-radius: var(--radius-card);
    }

    .map-container {
        height: 50vh;
        min-height: 300px;
        flex: none;
    }

    #map {
        height: 50vh;
        min-height: 300px;
    }

    header {
        padding: 16px;
    }

    header h1 {
        font-size: 18px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-symbol {
        width: 28px;
        height: 28px;
    }

    .brand-symbol .u {
        font-size: 13px;
    }

    .brand {
        gap: 8px;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 12px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .controls input[type='text'],
    .controls select,
    .controls button {
        font-size: 16px; /* Évite le zoom sur iOS */
    }

    .view-toggle-btn {
        display: none !important;
    }
}

/* ========== ACCESSIBILITÉ - FOCUS VISIBLE ========== */
*:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

*:focus:not(:focus-visible) {
    outline: none;
}

/* ========== LIENS ========== */
a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: color 200ms ease;
}

a:hover {
    color: var(--primary-btn);
}

a:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--neutral-50);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* ========== SÉLECTION DE TEXTE ========== */
::selection {
    background: var(--accent-blue);
    color: var(--text-white);
}
