/* Grundlegendes Layout */
body {
    font-family: sans-serif;
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.5); /* Halbtransparent für den Schnee-Effekt */
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 10; /* Damit es über dem Schnee liegt */
    position: relative;
    width: 80%;
    max-width: 600px;
}

/* CHART STYLING */
.chart-container {
    display: flex;
    justify-content: space-around; /* Gleichmäßiger Abstand */
    align-items: flex-end; /* Wichtig: Ausrichtung am Boden */
    height: 300px; /* Feste Höhe für das Diagramm */
    margin-top: 2rem;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3); /* X-Achse Linie */
}

.bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15%; /* Breite pro Säule */
    height: 100%;
    justify-content: flex-end;
}

.bar-wrapper {
    width: 100%;
    height: 80%; /* Platz für die Balken (lässt Platz für Text unten) */
    display: flex;
    align-items: flex-end; /* Balken wachsen von unten */
    justify-content: center;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, #3498db, #5dade2); /* Schöner Verlauf */
    border-radius: 5px 5px 0 0;
    transition: height 1s ease-in-out; /* Animation beim Ändern */
    min-height: 2px; /* Damit man auch bei 0 etwas sieht */
}

/* Unterschiedliche Farben für die Balken (optional) */
.bar-group:nth-child(1) .bar { background: #e74c3c; }
.bar-group:nth-child(2) .bar { background: #f1c40f; }
.bar-group:nth-child(3) .bar { background: #2ecc71; }
.bar-group:nth-child(4) .bar { background: #9b59b6; }

.count {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.label {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 5px;
}

/* Schnee CSS (hier nur kurz angedeutet, da Sie es schon haben) */
.snow-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}
/* ... Ihr restliches Schnee-CSS ... */