/* Sidebar Background */
.main-sidebar {
    background-color: #1D3557; /* Dark Navy Blue */
    color: #FFFFFF;
    padding: 20px;
    height: 100vh;
    width: 250px; /* Sidebar Width */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Sidebar Navigation Links */
.nav-sidebar .nav-link {
    color: #B0B0B0; /* Light Gray Text */
    font-size: 16px; /* Modern font size */
    font-weight: normal; /* Light weight */
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px; /* Rounded corners for hover effect */
    transition: background-color 0.3s ease;
}

/* Sidebar Links on Hover */
.nav-sidebar .nav-link:hover {
    background-color: #3A8DFF; /* Light Blue on hover */
    color: white;
}

/* Active Sidebar Link */
.nav-sidebar .nav-link.active {
    background-color: #1F2D4A; /* Dark Blue or #3A8DFF */
    color: white;
}

/* Sidebar Link Icons */
.nav-sidebar .nav-icon {
    color: #B0B0B0; /* Light Gray for icons */
    margin-right: 10px;
}

/* Sidebar Branding Section */
.brand-section {
    display: flex;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.brand-section .brand-link {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    font-size: 24px; /* Small light modern font for brand name */
    font-weight: bold; /* Bold for visibility */
}

.brand-section .brand-link img {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

/* Sidebar Collapse Button (If needed) */
.sidebar-toggle {
    color: #FFFFFF;
}

/* Sidebar Footer */
.sidebar-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: #1D3557;
    color: #B0B0B0;
    font-size: 12px;
    text-align: center;
}
