@media(min-width: 1201px) and (max-width:1365px) {
    .burger-btn {
        display: block;
    }
}
@media only screen and (max-width:1200px) {
    
    .navbar {
        margin-left: 0px !important;
    }

    .h-6rem{
        height: 6rem !important;
    }
    .trip{
        left:0px;
    }
    .sidebar-wrapper {
        position:absolute;
        left: -300px;
        /* transition: margin-left .3s ease-in-out, width .3s ease-in-out; */
        z-index: 9999;
    }
    .main-body{
        margin-left: 0px;
    }
    #welcome{
        display: none;
    }
    .hide-mobile{
        display: none;
    }
    #sidebar{
        transition: transform 0.3s ease;
    }
    .sidebar-hide{
        display: block;
    }
    #icon-1{
        display: none;
    }
    #icon-2{
        display: none;
    }
    .overlay {
        display: none;
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, .7);
        z-index: 998;
        opacity: 0;
        top: 0;
        transition: all 0.5s ease-in-out;
    }
    .overlay.active {
        display: block;
        opacity: 1
    }

    /* Sidebar wrapper with transition for smooth width change */
    .sidebar-wrapper {
        width: 0;  /* Initially collapsed */
        transition: width 0.3s ease; /* Smooth width transition */
        overflow: hidden;
    }

    /* When the sidebar is opened, add the open class */
    .sidebar-wrapper.open {
        width: 230px; /* Sidebar width when open */
    }

    /* Overlay styles */
    #overlay {
        opacity: 0; /* Initially hidden */
        transition: opacity 0.3s ease; /* Smooth fade in/out */
    }

    #overlay.active {
        opacity: 1; /* When active, overlay becomes visible */
    }

    
    
    /* #seats
    {
        display: none;
    } */
}
@media only screen and (max-width:1500px) {
    /* .navbar {
        margin-left: 0px !important;
    } */

    .burger-btn {
        display: block;
    }

    #filter {
        display: none;
    }

    /* #seats
    {
        display: none;
    } */
}

@media only screen and (min-width:1500px) {
    
    #filter_btn {
        display: none;
    }

    #seat-btn {
        display: none;
    }
}

@media only screen and (max-width:576px) {
    
    .status-data{
        font-size: 12px;
        font-weight: 700;
        margin-top: 0px;
    }
    .diamond .diamond, i{
        font-size: 14px;
    }
    
    .special-fare-scroll {
        display: unset;
    }
    .table-height {
        height: unset;
        overflow: auto;
    }
    .border-sm-none {
        border: none !important;
    }

    .responsive-swip {
        transform: rotate(90deg);
    }

    .w-240px {
        width: 100% !important;
    }
    .offcanvas {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
    }
}

@media screen and (max-width: 767px) {
    .displayOnlyOnMobile {
        display: block !important; /* Show the element on devices with a screen width up to 767px */
    }
    .status-data{
        font-size: 12px;
        font-weight: 700;
        margin-top: 0px;
    }
    .diamond .diamond, i{
        font-size: 14px;
    }
}

.displayOnlyOnMobile {
    display: none; /* Hide the element by default on all devices */
}   
