/********************************************************************
*** Général
********************************************************************/
@import url('https://fonts.cdnfonts.com/css/fascinate-inline');
@import url('https://fonts.cdnfonts.com/css/dm-sans');

html {
    color-scheme: dark light;
    view-transition-name: root;
    scroll-behavior: smooth;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation: none;
    mix-blend-mode: normal;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

    ::view-transition-new(root) {
        animation: none;
    }
}

:root {
    --font-fascinate-inline: 'Fascinate Inline', sans-serif;
    --font-dm-sans: 'DM Sans', sans-serif;
    --font-monospace: monospace;

    --color-background: light-dark(#ffffff, #1a1a1a);
    --color-foreground: light-dark(#0a0a0a, #f5f5f5);

    --color-primary-background-dark: light-dark(#e0e0e0, #020617);
    --color-primary-background-medium: light-dark(#e8e8e8, #0f172a);
    --color-primary-background-light: light-dark(#f0f0f0, #1e293b);

    --color-primary-grey-foreground: rgba(128, 128, 128, 0.75);
    --color-primary-red-foreground: light-dark(darkred, red);
    --color-primary-orange-foreground: light-dark(darkorange, orange);
    --color-primary-green-foreground: light-dark(darkgreen, green);
    --color-primary-yellow-foreground: light-dark(yellowgreen, yellow);

    --color-primary-orange-opacity: light-dark(rgba(255, 140, 0, 0.25), rgba(255, 165, 0, 0.1));

    --color-btn-background: light-dark(rgba(255, 140, 0, 0.08), rgba(255, 255, 255, 0.08));
    --color-btn-hover-background: light-dark(rgba(255, 140, 0, 0.2), rgba(255, 255, 255, 0.2));
    --color-btn-border: light-dark(rgba(255, 140, 0, 0.15), rgba(255, 255, 255, 0.15));

    --color-card-background: light-dark(rgba(255, 140, 0, 0.025), rgba(255, 255, 255, 0.08));
    --color-card-hover-background: light-dark(rgba(255, 140, 0, 0.1), rgba(255, 255, 255, 0.2));
    --color-card-border: light-dark(rgba(255, 140, 0, 0.15), rgba(255, 255, 255, 0.15));

    --color-input-background: light-dark(rgba(255, 140, 0, 0.08), rgba(255, 255, 255, 0.08));
    --color-input-hover-background: light-dark(rgba(255, 140, 0, 0.1), rgba(255, 255, 255, 0.2));
    --color-input-border: light-dark(rgba(255, 140, 0, 0.15), rgba(255, 255, 255, 0.15));

    --color-burger-menu-background: light-dark(rgba(232, 232, 232, 0.9), rgba(15, 23, 42, 0.9));

    --color-placeholder-foreground: light-dark(rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 0.4));

    --color-text-shadow: rgba(0, 0, 0, 0.4);

    /* Gestion des valeurs du cookie et de l'assistant */
    --modal_bg-glass: light-dark(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.06));
    --modal_border-glass: light-dark(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.15));
    --modal_shadow-glass: light-dark(rgba(31, 38, 135, 0.08), rgba(0, 0, 0, 0.45));

    --modal_text-title: light-dark(#1e293b, #ffffff);

    --modal_btn-deny-bg: light-dark(rgba(0, 0, 0, 0.04), rgba(255, 255, 255, 0.08));
    --modal_btn-deny-bg-hover: light-dark(rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.15));
    --modal_btn-deny-border: light-dark(rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.1));
    --modal_btn-deny-text: light-dark(#475569, #ffffff);

    --modal_assistante-response-bg: light-dark(rgba(0, 0, 0, 0.15), rgba(255, 255, 255, 0.15));
    --modal_assistante-response-bg-hover: light-dark(rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.3));
    --modal_assistante-response-border: light-dark(rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.2));
}

/********************************************************************/

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/********************************************************************
*** body / main / section
********************************************************************/
body {
    margin: 0;
    font-family: var(--font-dm-sans);
    background: radial-gradient(circle at top left, var(--color-primary-orange-opacity), transparent 10%),
        radial-gradient(circle at bottom right, var(--color-primary-orange-opacity), transparent 10%),
        linear-gradient(135deg, var(--color-primary-background-light) 0%, var(--color-primary-background-medium) 60%, var(--color-primary-background-dark) 100%);
    background-attachment: fixed;
    color: var(--color-foreground);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    user-select: none;
}

main {
    flex: 1;
}

section {
    min-width: 100%;
    padding-top: 350px;
    align-items: center;
}

section:last-child {
    padding-block: 350px;
}

.section-article {
    padding-block: 200px !important;
}

/********************************************************************
*** Contenu
********************************************************************/
.container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto 0 auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.container h1 {
    font-family: var(--font-monospace);
    font-size: 36px;
    font-weight: bold;
    text-shadow: 0 2px 4px var(--color-text-shadow);
    color: var(--color-foreground);
}

.container h2 {
    font-family: var(--font-monospace);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary-orange-foreground);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding-top: 6px;
    padding-bottom: 20px;
}

.container p {
    font-family: var(--font-dm-sans);
    font-size: 20px;
    letter-spacing: 0.15em;
    line-height: 1.5;
}

/********************************************************************
*** Nav
********************************************************************/
.navigation {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--color-text-shadow);
    z-index: 1000;
    box-sizing: border-box;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Zone Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-foreground);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    z-index: 1001;
}

/* Zone Menu Central (Desktop) */
.nav-menu {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.navigation a.nav-link {
    text-decoration: none;
    color: var(--color-foreground);
    font-weight: 500;
    padding: 10px 20px;
    display: block;
    position: relative;
    transition: color 0.3s;
}

.navigation a.nav-link:hover {
    color: var(--color-foreground);
}

/* Item ACTIF (Bouton Orange Glass) */
.navigation li.active a.nav-link {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.85) 0%, rgba(255, 69, 0, 0.85) 100%);
    color: var(--color-foreground);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 10px rgba(255, 69, 0, 0.4);
}

.navigation li.active a.nav-link:hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.95) 0%, rgba(255, 69, 0, 0.95) 100%);
    box-shadow: 0 8px 14px rgba(255, 69, 0, 0.6);
    transform: translateY(-2px);
}

/* Items NON-ACTIFS (Ligne sous les liens) */
.navigation li:not(.active) a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ff6e00;
    transition: width 0.3s ease, left 0.3s ease;
}

.navigation li:not(.active) a.nav-link:hover::after {
    width: 60%;
    left: 20%;
}

/* Zone Droite : Actions & Burger */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

/********************************************************************
*** Button
********************************************************************/
.btn-round {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--color-btn-border);
    background: var(--color-btn-background);
    color: var(--color-foreground);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-round:hover {
    background: var(--color-btn-hover-background);
    transform: scale(1.05);
}

/* --- BOUTON BURGER --- */
/* Masque complètement le conteneur rond du burger sur grand écran */
#burgerToggle {
    display: none;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    cursor: pointer;
}

.burger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-foreground);
    transition: all 0.3s ease;
}

.burger-menu.open .bar1 {
    transform: translateY(6px) rotate(45deg);
}

.burger-menu.open .bar2 {
    opacity: 0;
}

.burger-menu.open .bar3 {
    transform: translateY(-6px) rotate(-45deg);
}

/* --- BOUTON SOCIAL --- */
.social-links {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-block: 16px;
}

.social-links a {
    text-decoration: none;
}

/********************************************************************
*** Card
********************************************************************/
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 95%;
    max-width: 1200px;
    margin: 0px auto 50px auto;
}

.card-border {
    position: relative;
    border-top: 2px solid var(--color-primary-orange-foreground);
    border-radius: 20px;
    overflow: hidden;
}

.card {
    height: 100%;
    background: var(--container-color);
    border-radius: 20px;
    border: 1px solid var(--color-card-border);
    background: var(--color-card-background);
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.card:hover {
    background: var(--color-card-hover-background);
    transition: 0.35s;
}

.card-number {
    position: absolute;
    top: 0px;
    right: 12px;
    font-size: 80px;
    font-weight: 800;
    color: var(--color-primary-grey-foreground);
}

.card-icon {
    width: 50px;
    height: 50px;
    color: var(--color-primary-orange-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-foreground);
    position: relative;
    font-family: var(--font-fascinate-inline);
}

.card p {
    color: var(--text-grey);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
}

.card-store {
    height: auto;
    width: 100px;
}

/********************************************************************
*** Vidéo
********************************************************************/
iframe {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    /* aspect-ratio: 16 / 9; */
}

.box-media {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0 auto;
    display: flex;
    background: var(--container-color);
    border-radius: 20px;
    border: 1px solid var(--color-card-border);
    background: var(--color-card-background);
    overflow: hidden;
}

/* Le wrapper sert de calque pour l'effet d'ombre */
.wrapper-image {
    position: relative;
    width: 100%;
    height: 100%;
}

/* L'effet d'ombre (vignettage) par-dessus l'image */
.wrapper-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Centre transparent, bords noirs transparents */
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none;
    /* Permet de cliquer à travers si besoin */
}

.image-box {
    flex: 1;
    /* Le div de gauche prend la moitié de l'espace */
    overflow: hidden;
    /* Empêche l'image de dépasser du div */
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* L'image couvre tout le div sans se déformer */
    display: block;
}

.video-box {
    flex: 2;
    overflow: hidden;
}

.content-box {
    flex: 2;
    /* Le div de droite prend l'autre moitié */
    padding: 20px;
    /* Espace intérieur */
    box-sizing: border-box;
    /* Inclut le padding dans la largeur totale */
}

.content-box h2 {
    font-family: var(--font-monospace);
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.2em;
    padding-bottom: 20px;
    text-shadow: 0 1px 1px var(--color-text-shadow);
}

/********************************************************************
*** Formulaire
********************************************************************/
/* Groupes de champs */
.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    color: var(--color-foreground);
    margin-bottom: 8px;
    font-size: 14px;
}

label span {
    color: red;
}

/* Style des inputs en mode glassmorphism */
input,
textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--color-input-background);
    border: 1px solid var(--color-input-border);
    border-radius: 8px;
    color: var(--color-foreground);
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    background: var(--color-input-hover-background);
    border-color: var(--color-input-background);
    box-shadow: 0 0 10px var(--color-input-hover-background);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Placeholder personnalisé */
::placeholder {
    color: var(--color-placeholder-foreground);
}

/* Checkbox personnalisé */
.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 8px;
    width: 30px;
    height: 30px;
    min-width: 36px;
    min-height: 36px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: grey;
    border: var(--border-style);
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
    background-color: var(--color-primary-orange-foreground);
    border: 2px solid var(--color-primary-orange-foreground);
    box-shadow: inset 0 0 0 4px white;
}

/********************************************************************
*** Footer
********************************************************************/
.main-footer {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin: 0 auto 0 auto;
    box-sizing: border-box;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -10px 40px var(--color-text-shadow);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-size: 0.95rem;
    color: var(--color-foreground);
}

/********************************************************************
*** Divers
********************************************************************/
.span-primary-color {
    color: var(--color-primary-orange-foreground);
    font-weight: bold;
}

.link-primary-color {
    text-decoration: none;
    font-weight: 800;
    color: var(--color-primary-orange-foreground);
}

.link-primary-color:hover {
    text-decoration: underline;
}

.text-update {
    font-size: 11px !important;
    color: var(--color-primary-grey-foreground) !important;
}

.text-info {
    margin-top: 5px;
    font-size: 11px !important;
    color: var(--color-primary-orange-foreground) !important;
}

h2.error {
    color: var(--color-primary-red-foreground);
}

h2.warning {
    color: var(--color-primary-orange-foreground);
}

h2.validated {
    color: var(--color-primary-green-foreground);
}

.img-circle-in-txt {
    float: left;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    shape-outside: margin-box;
    margin: 0 20px 5px 0;
}

/********************************************************************
*** Article
********************************************************************/
article {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 0px auto;
    display: block;
    background: var(--container-color);
    border-radius: 20px;
    border: 1px solid var(--color-card-border);
    background: var(--color-card-background);
    padding: 40px 30px;
}

article h1 {
    margin-bottom: 10px;
}

article p {
    color: var(--color-foreground) !important;
    line-height: 1.6 !important;
    font-size: 14px !important;
}

/********************************************************************
*** Responsive mobile (< 992px)
********************************************************************/
@media (max-width: 991px) {

    section {
        padding-top: 100px;
    }

    section:last-child {
        padding-block: 100px;
    }

    .section-article {
        padding-block: 100px !important;
    }

    .container h1 {
        font-size: 24px;
    }

    .container p {
        font-size: 14px;
    }

    #burgerToggle {
        display: flex;
    }

    .navigation {
        top: 16px;
        width: calc(100% - 32px);
        padding: 12px 20px;
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 12px;
        padding: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        background: var(--color-burger-menu-background);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        box-shadow: 0 15px 35px var(--color-text-shadow);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Cible l'élément li pour calibrer la largeur */
    .navigation .nav-menu li {
        width: 90%;
        display: flex;
        justify-content: center;
    }

    /* Étend le lien sur toute la largeur du li */
    .navigation a.nav-link {
        padding: 12px 0;
        text-align: center;
        width: 100%;
        /* Occupe les 85% alloués par le li */
        box-sizing: border-box;
    }

    .navigation li:not(.active) a.nav-link::after {
        display: none;
    }

    .main-footer {
        width: calc(100% - 32px);
    }

    .image-box {
        display: none;
    }

    .video-box {
        flex: 1;
    }

    iframe {
        aspect-ratio: 16 / 9;
    }
}

/********************************************************************
*** Dialog, Cookie et Assistant
********************************************************************/
.dialog-banner {
    z-index: 2000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5) !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner {
    z-index: 1000;
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 300px;
    background: var(--modal_bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border-top: 2px solid var(--color-primary-orange-foreground);
    box-shadow: 0 8px 32px 0 var(--modal_shadow-glass);
}

.help-assistant-banner {
    z-index: 1000;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: var(--modal_bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border-top: 2px solid var(--color-primary-orange-foreground);
    box-shadow: 0 8px 32px 0 var(--modal_shadow-glass);
}

.dialog-content {
    background: var(--modal_bg-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dialog-content,
.glass-content {
    color: var(--modal_text-title);
    border: 1px solid var(--modal_border-glass);
    border-radius: 20px;
    padding: 20px;
}

.dialog-content h3,
.glass-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 20px;
}

.dialog-content p,
.glass-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

/* Bouton de fermeture */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--color-foreground);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding: 5px;
    line-height: 1;
}

.close-btn:hover {
    opacity: 1;
}

/* Zone de réponse dynamique */
.assistant-response {
    max-height: 100px;
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    background: var(--modal_assistante-response-bg);
    border-left: 4px solid var(--color-primary-orange-foreground);
    font-size: 0.9rem;
    overflow-y: auto;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-list {
    max-height: 300px;
    display: flex;
    flex-direction: column;
    padding-inline: 5px;
    gap: 8px;
    overflow-y: auto;
}

.btn {
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-align: left;
    text-decoration: none;
}

.btn-glass {
    background: var(--modal_assistante-response-bg);
    color: var(--color-foreground);
    border: 1px solid var(--modal_assistante-response-border);
}

.btn-glass:hover {
    background: var(--modal_assistante-response-bg-hover);
    transform: translateX(-2px);
}

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

.btn-normal {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.85) 0%, rgba(255, 69, 0, 0.85) 100%);
    color: var(--color-foreground);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

.btn-normal:not(:disabled):hover {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.95) 0%, rgba(255, 69, 0, 0.95) 100%);
    transform: translateY(-2px);
}

.btn-normal:disabled {
    background: #cccccc;
    box-shadow: none;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
}

.btn-deny {
    background: var(--modal_btn-deny-bg);
    color: var(--modal_btn-deny-text);
    border: 1px solid var(--modal_btn-deny-border);
    text-align: center;
}

.btn-deny:hover {
    transform: translateY(-2px);
}

/********************************************************************
*** Visible / Invisible
********************************************************************/
.visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: all 300ms ease;
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: all 300ms ease;
}

/********************************************************************
*** ScrollBar
********************************************************************/
/* Pour les navigateurs modernes (Firefox, Chrome, Edge) */
.scrollable-div {
    scrollbar-width: thin;
    /* ou 'auto' */
    scrollbar-color: var(--color-primary-orange-foreground) transparent;
    /* Couleur du curseur et couleur de l'arrière-plan */
}

/* Pour Chrome, Safari et Edge (personnalisation avancée) */
.scrollable-div::-webkit-scrollbar {
    width: 12px;
    /* Largeur de la barre verticale */
}

.scrollable-div::-webkit-scrollbar-track {
    background: transparent;
    /* Couleur de l'arrière-plan de la barre */
}

.scrollable-div::-webkit-scrollbar-thumb {
    background-color: var(--color-primary-orange-foreground);
    /* Couleur du curseur */
    border-radius: 20px;
    /* Arrondi du curseur */
    border: 3px solid #f0f0f0;
    /* Espace autour du curseur */
}