body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background-color: #f0f0f0;
    color: #000;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.filter-header {
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.filter-group {
    display: inline-block;
    margin-right: 20px;
}

.filter-group label {
    display: block;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.filter-group select {
    padding: 8px;
    border: 1px solid #333;
    min-width: 200px;
    border-radius: 6px;
}

.btn {
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 6px;
    background: #fff;
    transition: 0.2s;
}

.btn:hover {
    background: #000;
    color: #fff;
}

.btn-print {
    background: #000;
    color: #fff;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.report-table th {
    background: #e0e0e0;
    border: 2px solid #000;
    padding: 12px;
    font-size: 13px;
    text-align: center;
}

.report-table td {
    border: 1px solid #000;
    padding: 8px 12px;
    font-size: 12px;
}

.report-table tr:nth-child(even) {
    background: #fafafa;
}

.total-row {
    background: #333 !important;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
}

@media print {
    .no-print {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-shadow: none;
    }

    @page {
        size: landscape;
        margin: 1cm 1.5cm;
    }

    .report-table {
        border: 2px solid #000 !important;
    }

    .report-table th {
        background-color: #ccc !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .report-table td {
        border: 1px solid #000 !important;
    }

    .report-table tr,
    .report-table th,
    .report-table td {
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    .total-final {
        display: table-row-group !important;
    }

    .print-only {
        display: block !important;
    }
}

.print-only {
    display: none;
}

#eurekaa_chatgpt_bard_sidebar,
[id*="gemini"] {
    display: none !important;
}
