/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {

    /* Hide non-printable elements */
    #sidebar,
    .btn,
    .modal,
    .no-print,
    .wizard-footer,
    .loader-overlay,
    .sidebar-link,
    .form-control,
    .form-select,
    button {
        display: none !important;
    }

    /* Reset layout */
    #app-container {
        display: block;
    }

    #main-content {
        margin-left: 0;
        width: 100%;
        padding: 0;
    }

    /* Page setup */
    @page {
        size: A4 landscape;
        margin: 1cm;
    }

    body {
        background: white;
        color: black;
    }

    /* Tables */
    .horario-table {
        page-break-inside: avoid;
        width: 100%;
        border-collapse: collapse;
    }

    .horario-table th,
    .horario-table td {
        border: 1px solid #000;
        padding: 8px;
    }

    .horario-table th {
        background-color: #e9ecef !important;
        color: black !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Cards */
    .card {
        border: 1px solid #dee2e6;
        box-shadow: none;
        page-break-inside: avoid;
    }

    /* Materia cards */
    .materia-card {
        border: 1px solid #dee2e6 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Headers */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
    }

    /* Links */
    a {
        text-decoration: none;
        color: black;
    }
}