@media (max-width: 768px) {
    .login-container {
        flex-direction: row;
    }
    .logo-container {
        margin-bottom: 20px;
        /*margin-right: 20px;*/
        background-color: #f9f9f9;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px !important;
    }
    .logo-container img {
        max-width: 250px;
    }
    .login-form {
        max-width: 400px;
    }

    .grid-container {
        grid-template-columns: 1fr; 
    }

    #current-time {
        display: none;
    }

    .studentImage {
        display: none;
    }

    .viewAttendanceMenusDiv {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start !important;
        align-content: flex-start !important;
    }

    .recepientsSelectBigDiv, .specificRecipientsDiv, .viewFeesBigDiv{
        flex-direction: column;
        align-items: flex-start!important;
        align-content: flex-start;
    }

    .btn {
        margin-bottom: 5px;
    }
}

@media (min-width: 768px) {
    .borderRight { /*view student border style*/
        border-right: 3px solid black;
    }

    .attendanceClassSelectDiv {
        width: 400px;
    }
}

/* Responsive Table */
@media (max-width: 768px) {
    .tableMobile thead {
        display: none;
    }
    .tableMobile, .tableMobile tbody, .tableMobile tr, .tableMobile td {
        display: block;
        width: 100% !important;
    }
    .tableMobile tr {
        margin-bottom: 20px;
    }
    .tableMobile tbody tr td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        background: #f1f1f1;
    }
    .tableMobile td:before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        font-weight: 600;
        font-size: 18px;
        text-align: left;
    }
    .tableMobile tr:nth-of-type(2n) {
        background-color: #f2f2f2;
    }
    .tableMobile tr td:nth-of-type(1) {
        display: none;
    }
}