/* Liste ValidationIssue : barre de compteurs par statut (cliquable) */
.vi-stats-wrapper {
    margin-bottom: 12px;
}

.vi-stats-toolbar {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.vi-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
    margin: 0;
}

.vi-stats-row .vi-stat-card.stat-card {
    min-width: 104px;
    flex: 1 1 auto;
    max-width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition:
        box-shadow 0.2s ease,
        background 0.2s ease,
        transform 0.15s ease;
}

.vi-stats-row .vi-stat-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.vi-stats-row .vi-stat-card .stat-value {
    font-weight: 600;
    margin-right: 4px;
}

.vi-stats-row .vi-stat-card .stat-label {
    font-size: 12px;
    white-space: normal;
    line-height: 1.25;
}
