/* Reports & Print */
#reportOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    overflow-y: auto;
    padding: 40px;
}

.report-page {
    background: white;
    width: 210mm;
    min-height: 297mm;
    margin: 0 auto;
    padding: 20mm;
    color: #1e293b;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.report-header {
    border-bottom: 2px solid #1e293b;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.report-chart-img {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
}

@media print {
    body * {
        visibility: hidden;
    }

    #reportOverlay,
    #reportOverlay * {
        visibility: visible;
    }

    #reportOverlay {
        position: absolute;
        left: 0;
        top: 0;
        background: white;
        padding: 0;
    }

    .report-page {
        box-shadow: none;
        margin: 0;
        width: 100%;
    }

    .no-print {
        display: none !important;
    }
}
