/* PRINT STYLES                               */
/* @media print: hides header/sidebar for     */
/* calendar printing.                         */

@media print {
    .calendar-header-bar {
        border-bottom: 2px solid #000;
    }

    .header-info,
    .quick-action-wrapper,
    .appointments-sidebar,
    .slide-panel,
    .slide-panel-overlay {
        display: none !important;
    }

    .calendar-main {
        width: 100%;
    }

    button,
    .btn,
    input[type="button"],
    input[type="submit"] {
        display: none !important;
    }

    a {
        text-decoration: none !important;
        color: inherit !important;
    }

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

    @page {
        margin: 8mm;
        size: A4 portrait;
    }
}
