.navbar-sticky {
    position: sticky;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    top: 0px;
    z-index: 1000;
}

.mobile-bottom {
    /* Default styles for mobile */
    display: flex;
    /* or whatever styles you want on mobile */
}

/* Hide on screens wider than 768px */
@media (min-width: 769px) {
    .mobile-bottom {
        display: none !important;
    }
}

.destop-sidebar {
    /* Default styles for mobile */
    display: none !important;
    /* or whatever styles you want on mobile */
}

/* Hide on screens wider than 768px */
@media (min-width: 769px) {
    .destop-sidebar {
        display: flex !important;
    }
}

.z-1000 {
    z-index: 1000;
}