/* Sidebar Fix CSS */
.sidebar-fix {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
}

.sidebar-fix .sidebar {
    width: 250px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.sidebar-fix .sidebar .nav-link {
    color: #495057;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-fix .sidebar .nav-link:hover {
    background-color: #e9ecef;
    color: #212529;
}

.sidebar-fix .sidebar .nav-link.active {
    background-color: #007bff;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar-fix .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
}
