/* ===========================================================================
   BAMBU STUDIO CONTROL CENTER - Basis-Stile (Reset und Grundlagen)
   ===========================================================================
    Version: v2.1.3
   Datei: html/css/base.css
   Erstellt: 16.04.2026
   ===========================================================================

   MODUL-FUNKTION
   ---------------
   Setzt Browser-Standardstile zurueck (Box-Sizing, Margins) und definiert
   die grundlegenden Stile fuer html, body und die Scrollbar. Die Schriftart
   "Roboto Condensed" wird als Standard gesetzt.

   =========================================================================== */

/* Box-Sizing-Reset fuer konsistentes Layout */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Basis: Schriftart und Hintergrund */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Condensed';
    font-weight: 400;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Scrollbar-Styling fuer Webkit-Browser */

/* Material Symbols Outlined: Globale Basisstile */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
    line-height: 1;
    flex-shrink: 0;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}
