/* Sidebar Default Settings */


/* Hamburger menu style (visible on all screen sizes) */
.hamburger-menu {
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
}

.hamburger-menu span {
    margin-left: 10px;
    font-size: 18px;
}






/* Dropdown menu alignment */
.dropdown-menu {
    position: relative;
    padding: 0;
}

/* Additional Hover Effect for better readability */
.navbar-nav .nav-item:hover .nav-link {
    background-color: #007bff;
    color: #fff !important;
    border-radius: 5px; 
}



/* Add background color and text color for the active menu item */
.navbar-nav .nav-link.active {
    background-color: #007bff; /* Highlight background color */
    color: #fff !important;    /* Highlight text color */
    border-radius: 5px;        /* Rounded corners for better appearance */
}

/* Ensure the text doesn't get hidden by the background color */
.navbar-nav .nav-link {
    color: #000; /* Default text color */
}

.navbar-nav .nav-link:hover {
    background-color: #0056b3; /* Slightly darker blue on hover */
    color: #fff;               /* Text color on hover */
}


 