@media (min-width: 991.98px) {

    .layout-fullwidth .left-sidebar{
        margin: 0 !important;
    }
    .left-sidebar{
        margin-right: 40px;
    }
    .event-list tr td{
        padding: 1rem;
    }
}

@media (max-width: 991.98px) {

    .left-sidebar {
        position: fixed;
        z-index: 11 !important;
        top: 80px;
        height: 100%;
        opacity: 0;
        display: none;
        transition: opacity 0.3s ease;
    }
    .left-sidebar::after{
        content: '';
        position: fixed;
        width: 285px;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -2;
        border-right: 2px solid var(--bs-card-bg);
        background: var(--bs-card-bg);
        box-shadow: var(--bs-box-shadow);
    }
    [data-bs-theme=light]{
        .left-sidebar::after{
            background-image: url(../images/body-bg.png);
            background-position: center center;
        }
    }
    [data-bs-theme=dark] {
        .left-sidebar::after{
            background-image: url(../images/body-bg-dark.png);
            background-position: center center;
        }
    }
    body.open .left-sidebar {
        transition: opacity 0.3s ease;
        display: block;
        opacity: 1;
    }
    .page-breadcrumbs .back-btn {
        min-width: auto;
        padding-right: 16px;
    }
    .header .logo{
        width: auto;
        padding-right: 10px;
    }
    .content-area {
        min-width: 100%;
    }
    /* Page Heading */
    .page-heading .welcome-text p {
        font-size: 14px;
    }
    /* Modules */
    .page-modules .module-item .module-title {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {

    Header
    .header .logo {
        padding-right: 16px;
    }
    .header .logo img {
        max-width: 90px;
    }
    .header .logo small{
        font-size: 10px;
        line-height: normal;
    }
    
    .header .dropdown-menu.notifications {
        width: 300px;
        overflow-y: auto;
    }
    .header .dropdown-menu.notifications a {
        width: 276px;
    }
    .page-breadcrumbs {
        top: 61px;
    }
    .page-name{
        font-size: 15px;
    }
    /* Modules */
    .left-sidebar::after{
        width: 255px;
    }
    .left-sidebar .nav-sidebar{
        width: 100%;
    }
    .sub-layout .body-area {
        width: 100%;
    }
    .sub-layout .body-area .ai-image-card {
        width: 100%;
    }
    .login-container > .row{
        height: 100vh;
    }
    /* table list and mobile grid view */
    .table-row-grid tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 5px;
        padding: 16px 0;
    }
    .table-row-grid tr td {
        width: 100%;
        text-align: center;
    }
    .event-list tr td img {
        width: 330px !important;
    }
}