/* ═══ Reporting Page ═══ */
#page-reporting {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.reporting-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.reporting-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1628;
}

.rep-kpi-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.rep-kpi {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-align: center;
}

.rep-kpi-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0d6efd;
}

.rep-kpi-lbl {
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.2rem;
}

.rep-charts-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rep-chart-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.rep-chart-card h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.rep-export-bar {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.rep-btn-export {
    background: white;
    border: 2px solid #0d6efd;
    color: #0d6efd;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    font-size: 0.9rem;
}

.rep-btn-export:hover {
    background: #0d6efd;
    color: white;
}

.rep-btn-export.ics {
    border-color: #198754;
    color: #198754;
}

.rep-btn-export.ics:hover {
    background: #198754;
    color: white;
}

@media (max-width: 1024px) {
    .rep-kpi-grid { grid-template-columns: repeat(3, 1fr); }
    .rep-charts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .rep-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    #page-reporting { padding: 1rem; }
}
