.stat-card {
    padding: 20px;
    border-radius: 8px;
    background: #f8f9fa;
    text-align: center;
    margin-bottom: 20px;
}

.stat-card h6 {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.stat-card h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: bold;
}

.stat-card.high-risk {
    background: #fee;
    border-left: 4px solid #dc3545;
}

.stat-card.high-risk h3 {
    color: #dc3545;
}

.stat-card.medium-risk {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.stat-card.medium-risk h3 {
    color: #856404;
}

.stat-card.low-risk {
    background: #d4edda;
    border-left: 4px solid #28a745;
}

.stat-card.low-risk h3 {
    color: #155724;
}

.risk-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.risk-badge.critical {
    background: #dc3545;
    color: white;
}

.risk-badge.high {
    background: #fd7e14;
    color: white;
}

.risk-badge.medium {
    background: #ffc107;
    color: #000;
}

.risk-badge.low {
    background: #28a745;
    color: white;
}

.table th {
    background-color: #343a40;
    color: white;
    font-weight: 600;
}

