/* Sidebar Styling */
/* Sidebar Styling */
.sidebar {
    width: 250px !important;
    height: 100vh !important; /* Full height */
    background-color: #2A2B82 !important; /* Deep Purple */
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    padding-top: 20px !important;
    z-index: 1000; /* Ensure it's above other elements */
    overflow-y: auto !important; /* Allow scrolling */
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15); /* Add shadow to the sidebar */
}


.sidebar ul {
    padding-left: 0 !important;
}

.sidebar .nav-item {
    margin-bottom: 15px !important;
}

.sidebar .nav-link {
    color: #ffffff !important; /* White Text */
    font-size: 16px !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out !important;
}

.sidebar .nav-link:hover {
    background-color: #8A2BE2 !important; /* Vibrant Purple */
    color: #ffffff !important;
}

.sidebar .nav-link i {
    margin-right: 10px !important;
}

.sidebar .nav-link.active {
    background-color: #6A5ACD !important; /* Medium Slate Blue for Active Link */
    color: white !important;
    font-weight: bold !important;
}

.sidebar-header {
    text-align: center !important;
    padding: 10px !important;
    border-bottom: 1px solid #ffffff !important;
}

.sidebar-header h5 {
    color: #ffffff !important;
    font-size: 18px !important;
}

.sidebar-header img {
    max-width: 100px !important;
    border-radius: 5px !important;
    margin-bottom: 10px !important;
}

.vh-100 {
    min-height: 100vh !important;
}

/* For Main Content to accommodate the fixed sidebar */
.main-content {
    margin-left: 250px; /* Sidebar width */
    padding: 20px;
}
