/* Hamburger Menu Styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: fixed;
    top: 40px;
    left: 0;
    z-index: 1000;
    padding-left: 20px;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Sidebar Menu */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    transition: left 0.3s ease;
    z-index: 999;
}

.sidebar a {
    padding: 15px;
    margin-top: 50px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.sidebar a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar.active {
    left: 0;
}

.sidebar-icons {
    margin-top: 100%; /* Push icons to the bottom */
    display: flex;
    justify-content: space-around;
    padding: 17px;
}

.sidebar-icons a img {
    width: 20px; /* Adjust size as needed */
    height: 20px;
    transition: transform 0.3s ease;
}

.sidebar-icons a img:hover {
    transform: scale(1.2); /* Enlarge icon slightly on hover */
}



/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* Show Overlay when Sidebar is Active */
.overlay.active {
    display: block;
}

/* Hide Hamburger Icon when Sidebar is Open */
.hamburger-menu.hidden {
    opacity: 0;
}