/* ============================================================
   STAT CARDS — dashboard
   ============================================================ */

.stat-card {
    background: #fff;
    border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 16px;
    height: 100%;
}

.stat-card-flat {
    background: var(--bs-body-bg, #f5f5f5);
    border-color: transparent;
}

.stat-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 12px;
}

.stat-card-value {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 0;
}

.stat-card-sub {
    font-size: 11px;
    color: #bbb;
    margin-top: 2px;
}

@media (max-width: 576px) {
    .stat-card        { padding: 12px; }
    .stat-card-value  { font-size: 22px; }
    .stat-card-icon   { width: 32px; height: 32px; font-size: 13px; margin-bottom: 8px; }
}
