/* style.css */

/* --- ALLGEMEINES --- */
body {
    /* Sorgt für weichere Schrift */
    -webkit-font-smoothing: antialiased;
}

/* --- DASHBOARD --- */
.stat-card {
    border-left: 5px solid;
    transition: transform 0.2s ease-in-out;
}
.stat-card:hover {
    transform: translateY(-3px);
    cursor: pointer;
}
/* Eigene Border-Farben, falls Bootstrap mal nicht reicht */
.border-primary-c { border-color: #0d6efd !important; }
.border-success-c { border-color: #198754 !important; }


/* --- REIFENVERWALTUNG (add_tire.php) --- */
.tire-row {
    background: #f8f9fa; /* Hellgrau für Lightmode */
    border-left: 4px solid #6c757d;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
}
/* Anpassung für Darkmode */
[data-bs-theme="dark"] .tire-row {
    background: #2b3035; /* Dunkelgrau */
    border-left-color: #adb5bd;
    color: #fff;
}


/* --- THEME TOGGLE BUTTON (theme_toggle.php) --- */
#theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}


/* --- COOKIE BANNER (tracking.php) --- */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none; /* JS schaltet das ein */
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
#cookie-banner button {
    margin-left: 15px;
}