.report-visualization {
    padding: 10px 0;
}

.stat-card {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-left: 4px solid;
    height: 100%;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.stat-icon-primary {
    background-color: rgba(68, 114, 196, 0.1);
    color: #4472C4;
    border-left-color: #4472C4;
}

.stat-icon-info {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border-left-color: #17a2b8;
}

.stat-icon-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-left-color: #28a745;
}

.stat-icon-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border-left-color: #ffc107;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.table-responsive {
    border-radius: 4px;
}

.progress {
    background-color: #e9ecef;
}

.badge {
    font-weight: 600;
}

