/* ================================================
   FASTPANEL — Normalisation cross-navigateur
   ================================================ */

/* Box model universel */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Normalisation typographique — surtout pour mobile */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar custom — sans scrollbar-gutter qui casse les layouts mobile */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(26,127,255,.35) transparent;
}
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
    background: rgba(26,127,255,.35);
    border-radius: 3px;
}
*::-webkit-scrollbar-thumb:hover {
    background: rgba(26,127,255,.6);
}

/* Liens — pas de highlight bleu au tap sur mobile */
a { -webkit-tap-highlight-color: transparent; }

/* Sélection texte */
::selection      { background: rgba(26,127,255,.28); color: #fff; }
::-moz-selection { background: rgba(26,127,255,.28); color: #fff; }

/* Tap delay suppression mobile */
a, button, input, select, textarea, label {
    touch-action: manipulation;
}
