/* Basic Style Overrides */
body {
    background-color: #f3f4f6;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Print Media Query */
@media print {
    body {
        background-color: white;
    }

    nav,
    .print\:hidden {
        display: none !important;
    }

    #mainApp {
        display: block !important;
    }

    #view-reports {
        display: block !important;
    }

    #view-daily,
    #view-teachers,
    #view-settings {
        display: none !important;
    }

    /* Expand Report Table */
    main {
        padding: 0;
        margin: 0;
        max-width: 100%;
    }

    /* Hide shadows and borders irrelevant to print */
    .shadow-sm,
    .shadow-md,
    .shadow-lg {
        box-shadow: none !important;
    }
}