/* cards/audit_card/style.css */
.stat-card-modern.audit-main {
    border-left: 4px solid #1E3C72;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.stat-card-modern.audit-success {
    border-left: 4px solid #10B981;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.stat-card-modern.audit-failed {
    border-left: 4px solid #F43F5E;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.audit-progress-mini {
    height: 6px;
    border-radius: 3px;
    background: #E2E8F0;
    margin-top: 4px;
}
.audit-progress-bar-mini {
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}
.finding-item {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
}
.finding-item:last-child {
    border-bottom: none;
}
.finding-item:hover {
    background: #f8fafc;
}
.severity-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}
.sev-high {
    background: #fee2e2;
    color: #dc2626;
}
.sev-medium {
    background: #fef3c7;
    color: #d97706;
}
.sev-low {
    background: #dcfce7;
    color: #16a34a;
}
