.kpi-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.kpi-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.progress-track {
    width: 100%;
    height: 0.5rem;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    transition: width 0.4s ease;
}

.table-scroll {
    overflow-x: auto;
}

.table-scroll table {
    min-width: 900px;
}

.badge-delta-up {
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.badge-delta-down {
    color: #dc2626;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.badge-delta-flat {
    color: #64748b;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}