.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-item {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

:root[data-theme="dark"] .stat-item {
    background-color: #273243;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item.critical .stat-value {
    color: var(--danger-color);
}

.stat-footer {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    text-align: center;
}
