.container{
    padding: 0 10px;
}
/* Header Styles */
.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.report-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.report-header h2 i {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Cards Section */
.report-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    font-size: 28px;
    margin-bottom: 8px;
}

.card:nth-child(2) {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}
.card:nth-child(3) {
    background: linear-gradient(135deg, #10b981, #047857);
}
.card:nth-child(4) {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-title {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 8px;
    font-weight: 500;
}

.card-value {
    font-size: 28px;
    font-weight: 700;
}
        
/* Responsive */
@media (max-width: 768px) {
    .report-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .card-icon {
        height: 45px;
        font-size: 21px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-value {
        font-size: 19px;
    }
}

@media (max-width: 468px) {
    .report-header h2 {
        font-size: 18px;
        gap: 8px;
    }

    .report-header h2 i {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    .card-icon {
        height: 35px;
        font-size: 18px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-value {
        font-size: 16px;
    }
}