/* Sidebar Content Scrollability */
.side-bar .side-bar-content {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
}

/* Custom Scrollbar for Sidebar */
.side-bar::-webkit-scrollbar,
.side-bar-content::-webkit-scrollbar {
    width: 6px;
}

.side-bar::-webkit-scrollbar-track,
.side-bar-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.side-bar::-webkit-scrollbar-thumb,
.side-bar-content::-webkit-scrollbar-thumb {
    background: rgba(214, 181, 95, 0.3);
    border-radius: 10px;
}

.side-bar::-webkit-scrollbar-thumb:hover,
.side-bar-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}