.quickstats-container {
    width: 100%;
    width: 90vw; max-width: 1000px; margin-left: auto; margin-right: auto; padding-left: 45px; padding-right: 45px; margin: 20px auto; margin-left: 45px; margin-right: 45px;
    margin: 20px auto;
    padding: 10px;
    
    border-radius: 10px;
    text-align: center;
}


/* Werte nebeneinander */
.quickstats-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Einzelne Boxen */
.quickstats-item {
    flex: 1;
    min-width: 180px;
    min-height: 45px;
    height: auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    border-radius: 8px;
    text-align: center;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
    gap: 2px;
}

/* Mobil: Drei schmale Container untereinander */
@media (max-width: 768px) {
    .quickstats-item {
        width: 100%;
    }
}

/* Label-Styling (Titel über den Zahlen) */
.quickstats-label {
    font-size: 14px;
    color: #888a8a;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.2;
}

/* Wert-Styling */
.quickstats-value {
    font-size: 13px;
    font-weight: bold;
    color: #888a8a;
    line-height: 1.0;
    margin-bottom: 2px;
}

/* Hover-Effekt */
.quickstats-item:hover {
    transform: translateY(-3px);
    
}

/* Mobilfreundlich: Werte untereinander */
@media (max-width: 768px) {
    .quickstats-box {
        flex-direction: column;
        align-items: center;
    }

    .quickstats-item {
        width: 80%;
    }
}

/* Aufleuchten der Werte beim Update */
.quickstats-value.updating {
    animation: glowEffect 0.5s ease-in-out;
}

@keyframes glowEffect {
    0% { color: #fff; text-shadow: 0 0 5px #009ee3; }
    50% { color: #009ee3; text-shadow: 0 0 15px #009ee3; }
    100% { color: #fff; text-shadow: 0 0 5px #009ee3; }
}
