
/* Print Styles for Weekly Reports */
@media print {
    /* Hide everything by default */
    body > * {
        display: none !important;
    }

    /* Only show the active modal */
    #activityModal.active {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        z-index: 9999;
    }

    #activityModal.active .modal-content {
        box-shadow: none;
        border: none;
        width: 100%;
        max-width: none;
        padding: 0;
        margin: 0;
    }

    /* Hide modal close button and action buttons (except print maybe, but print button shouldn't be printed) */
    #activityModal .close,
    #activityModal button:not(.print-only) {
        display: none !important;
    }

    /* Ensure list is fully visible */
    #activityModal .list-group {
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Add a title for the report */
    #activityModal .modal-header::after {
        content: " - Rapport Hebdomadaire";
        font-weight: normal;
    }
}
