/* v=v1.0.4 */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

h1 {
    color: #333;
    margin-top: 50px;
}

p {
    color: #666;
    font-size: 1.2em;
}

/* Ensure the menu is above the map */
#menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: rgba(63, 63, 63, 0.9);
    color: #fff;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transform: translateX(-100%); /* Hidden by default */
    transition: transform 0.3s ease-in-out;
    z-index: 1001; /* Ensure it is above the map */
    pointer-events: none; /* Prevent interaction when hidden */
}

/* Hamburger Menu Container */
#hamburgerMenu {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1002; /* Ensure the button is above the menu */
    width: 50px; /* Ensure the button has a defined clickable area */
    height: 50px; /* Ensure the button has a defined clickable area */
    pointer-events: auto; /* Ensure the button is always clickable */
}

/* Ensure the hamburger button is not blocked */
.hamburger {
    position: relative;
    z-index: 1003; /* Ensure the button itself is above everything */
}

/* Default state: Keep the hamburger black */
.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
    background-color: #000; /* Black for the default hamburger */
}

/* Active state: Change the "X" to white */
.hamburger.is-active .hamburger-inner, 
.hamburger.is-active .hamburger-inner::before, 
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff !important; /* White for the "X" */
}

/* Menu Visible State */
#menu.visible {
    transform: translateX(0); /* Slide in */
    pointer-events: auto; /* Allow interaction when visible */
}

/* Menu Links */
#menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#menu ul li {
    margin: 20px 0;
}

#menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

#menu ul li a:hover {
    text-decoration: underline;
}

/* Hidden Class */
.hidden {
    display: none;
}