body {
    margin: 0;
    padding: 0;
}

nav {
    display: none !important;
}

#map {
    position: absolute;
    top: 35px;
    bottom: 0;
    width: 100%;
}

/* Define the container for sidebar and content */
.container {
    display: flex;
}

/* Style the sidebar */
.sidebar {
    width: 7vw; /* Adjust the width as needed */
    background-color: white; /* Sidebar background color */
    color: #fff; /* Text color */
    position: fixed; /* Fixed positioning */
    height: 100%; /* Full-height sidebar */
    z-index: 1; /* Higher z-index to stay above content */
    overflow-x: hidden; /* Hide horizontal scrollbar */
    padding-top: 20px;
}

/* Add a class to style the button container */
.button-container {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 25px; /* Add some spacing between buttons */
    margin-top: 20px; /* Add margin at the top of the button container */
}

.button-container button {
    background-color: #89d7f1;
    color: white;
    border: 0;
    font-weight: bold;
    border-radius: 10px;
    margin: 0 5px 0;
    padding: 5px;
    cursor: pointer;
}

.button-container button:hover {
    background-color: black;
}

/* Style links inside the sidebar */
.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    display: block;
}

/* Hover effect for sidebar links */
.sidebar a:hover {
    background-color: #555;
}

/* .btn {
    display: block;
    position: relative;
    margin: 0px auto;
    width: 5.5%;
    height: 40px;
    left: 47%;
    margin-top: 30px;
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 11.5px;
    font-weight: bold;
}

.btn:hover {
    opacity: 0.8;
} */

#center {
    font-weight: bold;
    color: black;
}

.hamburger-menu {
    display: none; /* Initially hide the hamburger menu */
    cursor: pointer;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bar {
    width: 30px;
    height: 4px;
    background-color: #333;
}

footer {
    display: none !important;
}

@media (max-width: 768px) {
    nav {
        display: flex !important;
        box-shadow: none !important;
    }
    .btn {
        display: block;
        position: relative;
        margin: 0px auto;
        width: 5.5%;
        height: 40px;
        left: 47%;
        margin-top: 30px;
        padding: 10px;
        border: none;
        border-radius: 3px;
        font-size: 11.5px;
        font-weight: bold;
    }
    .container {
        flex-direction: column; /* Stack elements vertically */
    }

    .sidebar {
        display: none; /* Initially hide the sidebar */
        /* ... other styles ... */
    }

    .content {
        margin-left: 0; /* No margin for content */
    }

    .hamburger-menu {
        display: block;
    }
}