.mt-sp5 {
    margin-top: 7rem;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text-main);
    border-radius: 8px;
    margin-bottom: 2px;
    transition: all 0.2s;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--light-gray);
    font-family: var(--Regular);
}

.category-item i {
    width: 25px;
    margin-right: 10px;
    color: var(--primary-color);
    text-align: center;
}

.category-item:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    transform: translateX(5px);
}


@media (max-width: 991px) {
    .sidebar-wrapper {
        display: none;
    }

    .main-content {
        margin-left: 0;
    }

    .search-wrapper {
        display: none !important;
    }
}

/* --- Sidebar Navigation --- */
.sidebar-heading {

    font-family: var(--Bold);
}

.sidebar-sticky {
    position: sticky;
    top: 85px;
    height: calc(100vh - 85px);
    overflow-y: auto;
    overflow-x: hidden;
    border-right: 1px solid var(--border-color);
    padding-top: 1rem;
    background: white;

}

.sidebar-sticky::-webkit-scrollbar {
    width: 4px;
}

.sidebar-sticky::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

@media (max-width: 991.98px) {
    .sidebar-sticky {
        display: none;
    }

    .category-item {
        white-space: nowrap;
        margin-right: 10px;
    }
}