body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin-top: 70px;
}
/* Navbar Styles */
.navbar {

    background-color: #eaedf1;
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


.navbar-brand img {
    /* position-repeat:no-repeat; */
    max-width: 100%;
    height: 40px;
    /*filter: hue-rotate(240deg);*/

}


.navbar-nav .nav-link {
    color: #333;
    transition: color 0.3s, transform 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
    transform: scale(1.05);
}
.navbar-nav .nav-link.active {
    color: #007bff;
     /* Slightly enlarge the active link */
}
/* Slide underline effect */



.navbar-nav .nav-item {
    margin-right: 20px;
}

.navbar-nav .nav-item:last-child {
    margin-left: 0;
}

.navbar-nav .btn {
    /*background-color: #0056b3;*/
    /* Darker blue for the button */
    border: none;
    background: none;
    color: #333;
    padding: 8px;
    
}
.navbar-nav .btn:active{
    background: none;
     color: #007bff;
}


.navbar-nav .dropdown-menu {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    color: #333;
}

.navbar-nav .dropdown-item:hover {
    background-color: #007bff;
    color: white;
}

.navbar-nav .dropdown-item:focus {
    outline: none;
    background-color: #0056b3;
    color: white;
}

/* Dark Mode Button */
.toggle-btn {
    margin-left: 10px;
    background-color: transparent;
    border: none;
    color: white;
    /* Icon color */
    cursor: pointer;
}


/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background-color: rgba(255, 255, 255, 0.2);
    /* Light mode sidebar */
    backdrop-filter: blur(10px);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s;
    /* Smooth transition */
    transform: translateX(-100%);
    /* Hidden by default */
}


.sidebar.active {
    transform: translateX(0);
    /* Slide in */
}

.sidebar ul {
    padding: 20px 0;
    /* Padding for sidebar content */
}

.sidebar li {
    margin: 15px 0;
}

.sidebar a {
    margin-left: 10px;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #343a40;
    /* Default link color */
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
    /* Smooth transition */
}



.sidebar a:hover {
    background-color: #f0f0f0;
}

.menu-button {
    display: none;
    /* Hidden on larger screens */
}

.fa,
.far,
.fas {
    font-family: "Font Awesome 5 Free";
    margin-right: 10px;
}
.fa-bars{
    margin-right: 0px;
}

/* Media Queries */
@media (max-width: 992px) {
    .hideOnMobile {
        display: none;
        /* Hide on mobile */
    }

    .menu-button {
        display: block;
        /* Show menu button on mobile */
        margin-right: 10px;
        /* Space from logo */
        color: #797374;
        /* Button color */
        background: transparent;
        /* Transparent background */
        border: none;
        /* No border */
        font-size: 24px;
        /* Font size for better visibility */
    }
}
