/* General Page Setup */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header / Logo Styling */
header {
    display: flex; /* Use flexbox for easy alignment */
    justify-content: space-between; /* Pushes items to opposite ends */
    align-items: center;
    padding: 5px 5px;
    background: transparent;
    z-index: 10;
}

.header img {
    width: auto; /* Set the width for the image */
    height: 90px; /* Maintain the aspect ratio */
    border-radius: 4px;
    transition: transform 0.3s;
}
#METbanner {
    height: 90px;
}
#METbanner:hover {
    transform: scale(1.04); /* Slight zoom effect on hover */
    cursor: pointer;
}



/* Blue Circle Menu Button */
.menu-button {
    width: 60px;
    height: 60px;
    background-color: #007BFF;
    color: white;
    border-radius: 10%;
    border: none;
    font-size: 28px;
    line-height: 35px;
    cursor: pointer;
    display: flex;
    margin-top: 0px;
    margin-left: 15px;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 1001; /* Sits above the overlay */
}

.menu-button:hover {
    background-color: #005a9c;
}

/* Floating Sidebar Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: -150px; /* Hidden by default */
    width: 100px;
    height: auto;
    background-color: #f8f8f8;
    box-shadow: 4px 0px 15px rgba(0,0,0,0.2);
    transition: 0.4s ease;
    z-index: 1000;
    padding: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-menu.active {
    left: 0; /* Slides in */
}

/* Sidebar Links (The 5 Icons) */
.menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
}

.menu-link img {
    width: 80px; /* Small icon version for menu */
    height: auto;
    transition: transform 0.2s;
}
.menu-link img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    cursor: pointer;
}

/* Hides the menu item for the page the user is already on */
.is-current {
    display: none !important;
}

/* Dark Overlay when menu is open */
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

.overlay.active {
    display: block;
}