/* ==============================================
   TM24 NOVAChild - Reset
   Datei: base/reset.css
   Scope: global
   Quelle: custom.css Zeilen 38-109
   UTF-8 ohne BOM
   ============================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Textauswahl */
::selection {
    background: rgba(46, 43, 203, .12);
    color: var(--txt);
}
::-moz-selection {
    background: rgba(46, 43, 203, .12);
    color: var(--txt);
}

/* Focus-Styles */
textarea:focus {
    outline: none !important;
    box-shadow: none;
}

*:focus-visible:not(.nav-link):not(.btn):not(a) {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(46, 43, 203, 0.15) !important;
    border-radius: 8px;
}

/* Scrollbar */
::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #c4c4cc; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: #a0a0ab; }
