/* Hamburger menu styles */
.hamburger-menu {
    position: fixed;
    top: 15px;
    left: 10%;
    transform: translateX(-50%);
    z-index: 1001; /* Ensure it is above the iframe */
    background-color: rgba(255, 255, 255, 0.329);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
}

.menu-links {
    display: none;
    position: absolute;
    top: 63px;
    left: 10%;
    transform: translateX(-50%);
    background-color: rgba(88, 88, 88, 0.507);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    z-index: 1001; /* Ensure it is above the iframe */
}

.menu-links a {
    display: block;
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin: 7px 0;
}

.menu-links a:hover {
    text-decoration: underline;
}