/* v2.0 | 20110126
   http://meyerweb.com/eric/tools/css/reset/
   License: none (public domain)
*/

/* Pour Chrome, Edge et Safari */
::-webkit-scrollbar {
    width: 20px; /* Largeur de la barre verticale */
    height: 12px; /* Hauteur de la barre horizontale (si nécessaire) */
}

::-webkit-scrollbar-track {
    background: #0A0D11; /* Couleur de fond de la piste */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #141C25; /* Couleur du "curseur" */
    border-radius: 6px;
    border: 2px solid #0A0D11; /* Optionnel : bordure pour un effet "encastré" */
}

::-webkit-scrollbar-thumb:hover {
    background: #1a2530; /* Couleur au survol */
}

/* Pour Firefox (version 64+) */
html {
    scrollbar-width: thin; /* "auto" | "thin" | "none" */
    scrollbar-color: #141C25 #0A0D11; /* Couleur du curseur + piste */
} 

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
    font-size: 1rem;
    overflow-x: hidden;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
ul, li, ol {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
button {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}    
