﻿
@media(max-width: 1355px) {
    .nav-link {
        color: #FFF !important;
        font-family: Poppins;
        font-size: 11px;
        font-weight: 400;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 4px;
    }
}


/* Base overlay and sidebar hidden by default */
@media (max-width: 1199.98px) {
    .mobile-sidebar {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100%;
        background: #001435;
        box-shadow: 4px 6px 24px 0px rgba(109, 141, 173, 0.25);
        z-index: 1050;
        transition: left 0.3s ease-in-out;
        padding-top: 40px;
    }

        .mobile-sidebar.active {
            left: 0;
        }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 1040;
        display: none;
    }

        .overlay.active {
            display: block;
        }

    .collapse:not(.show) {
        display: block;
    }

    .mobile-navbar {
        gap: 25px;
    }
}


@media(max-width: 767px) {
    .more-option-dropdown .dropdown-menu,
    .notifications-dropdown .dropdown-menu {
        min-width: 300px;
        padding: 1rem;
    }

    .mobile-width{
        width:100%;

    }
}