@media screen and (max-width: 1050px) {
    #content {
        transition: margin-right 0.3s ease;
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        display: none;
        z-index: 999;
    }

    .sidebar-wrapper {
        position: fixed;
        top: 0;
        left: -250px;
        width: 15.5rem;
        height: 100%;
        background-color: #f5f5f5;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    .sidebar-active .sidebar-wrapper {
        left: 0;
    }

    .sidebar-active .sidebar-overlay {
        display: block;
    }

    #content {
        transition: margin-left 0.3s ease;
    }

    .sidebar-active #content {
        margin-left: 0;
    }

    .sidebar.toggled,
    .sidebar {
        width: 100% !important;
        overflow: visible;
    }

    .sidebar .nav-item .nav-link {
        width: 100%;
    }
    .nav-link[data-toggle="collapse"]::after {
        display: block;
    }
}

.sidebar.toggled {
    overflow: hidden !important;
}
.img-brand {
    background-color: #fff;
    border-radius: 20px;
}
