#blank-layout {
    .login-btn {
        color: white;
        background-color: purple;
    }
}

#default-layout {
    .v-app-bar {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .card-title {
        font-weight: 500;
        font-size: 24px;
        color: black;
    }

    .program-name-txt {
        font-weight: 500;
        font-size: 20px;
        color: #720026;
        margin-bottom: 30px;
    }

    .refresh-btn {
        margin-top: 5px;
        margin-right: 15px;
        color: white;
        background-color: #00BCD4;
    }

    .create-btn {
        margin-top: 5px;
        margin-right: 15px;
        color: white;
        background-color: green;
    }

    .delete-btn {
        margin-top: 5px;
        margin-right: 15px;
        padding: 16px;
        color: white;
        background-color: red;
    }

    .search-btn {
        margin-top: 5px;
        margin-right: 15px;
        color: white;
        background-color: purple;
    }

    .close-btn {
        margin-top: 5px;
        margin-right: 15px;
        color: white;
        background-color: brown;
    }

    .back-btn {
        margin-top: 5px;
        margin-right: 15px;
        color: white;
        background-color: #37474F;
    }

    .generate-pdf-btn {
        color: white;
        background-color: #8f2d56;
    }

    .download-btn {
        margin-top: 5px;
        color: white;
        background-color: #087e8b;
    }

    .send-email-btn {
        margin-top: 5px;
        color: white;
        background-color: #14746f;
    }

    .records-txt {
        color: red;
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .menu-title {
        font-size: 24px;
        color: white;
        text-transform: uppercase;
        font-family: Helvetica, sans-serif;
        height: 53px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* number of lines to show */
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .menu-description {
        font-size: 16px;
        color: white;
        font-family: Georgia, serif;
        height: 90px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        /* number of lines to show */
        line-clamp: 4;
        -webkit-box-orient: vertical;
    }
}

@media (min-width: 1141px) {
    .mobile-menu {
        display: none;
    }

    .logo-md {
        display: none;
    }
}

@media (max-width: 1140px) {

    .leftside-menu {
        display: none;
    }

    .logout-txt {
        display: none;
    }

}