@media print {
    /* Hide everything by default */
    body * {
        visibility: hidden;
    }
    
    /* Show only the table content */
    .table-content,
    .table-content * {
        visibility: visible !important;
    }
    
    /* Position the table at the top of the printed page */
    .table-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    /* Ensure table is properly styled for print */
    .schedule-table {
        width: 100%;
        border-collapse: collapse;
        background: white !important;
        color: black !important;
    }

    .schedule-table caption {
        color: black !important;
        margin-bottom: 20px;
    }

    .schedule-table th,
    .schedule-table td {
        border: 2px solid black !important;
        padding: 12px;
        text-align: center;
        color: black !important;
        background: none !important;
    }

    /* Hide unnecessary elements */
    header,
    nav,
    footer,
    .breadcrumb,
    .print-button,
    #featured-products,
    .no-print {
        display: none !important;
    }

    /* Reset background colors and text colors for printing */
    body {
        background: none;
        color: black;
    }

    h2 {
        color: black !important;
        text-align: center;
        margin-bottom: 20px;
    }
}