/* ==== BODY + BACKGROUND ==== */
body {
    padding-top: 0; /* Platz für die fixe Navbar */
    background-color: #f8f9fa; /* Hintergrund für Light Mode */
    margin-top: 0;
}

/* ==== NAVBAR ==== */
.navbar {
    margin-top: 0;
}

/* ==== ICONS ==== */
.stat-icon {
    width: 48px;
    height: 48px;
    margin-right: 0.5rem;
}

/* ==== AUTOCOMPLETE LIST ==== */
#autocomplete-list {
    max-height: 300px;
    overflow-y: auto;
    background-color: white;
    border: none; /* Kein Rahmen */
    border-radius: 4px;
    position: absolute;
    max-width: 400px; /* Nicht so lang */
    z-index: 1050;
    list-style: none; /* Keine Punkte */
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Schöner Schatten */
}

#autocomplete-list li {
    cursor: pointer;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Dünne Linie */
}

#autocomplete-list li:last-child {
    border-bottom: none; /* Letzter Eintrag ohne Linie */
}

#autocomplete-list li:hover {
    background-color: #eee;
}

/* ==== TICK-BAR SETTINGS ==== */
.tick-bar-cell {
    min-width: 120px;
}

.tick-bar {
    position: relative;
    background: #e9ecef;
    border-radius: 4px;
    height: 20px;
    overflow: hidden;
}

.tick-fill {
    background-color: #0d6efd; /* Bootstrap-blau */
    height: 100%;
    transition: width 0.3s ease;
}

.tick-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    line-height: 20px;
}