.stats-card {
    background: var(--weiss);
    box-shadow: none;
    border-radius: 8px;
    padding: 15px;
    margin: 10px 0;
}
.stats-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.stats-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.stats-label, .stats-label1 {
    width: 150px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #444;
}
.stats-label1 {
    width: 200px;
}
.stats-bar-outer {
    flex: 1;
    background: var(--grau4);
    border-radius: 5px;
    height: 18px;
    overflow: hidden;
}
.stats-bar-inner {
    height: 100%;
    background: var(--hauptfarbe);
    border-radius: 0 5px 5px 0;
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
}
.stats-value {
    width: 56px;
    text-align: right;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #444;
}