/* Ensure html and body occupy full height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Map Page Specific Styles */
body.map-page {
    display: flex;
    flex-direction: column;
    height: 90vh; /* Full viewport height */
    background-color: #1c1c1c; /* Match your global background */
}

/* Header Styling */
body.map-page header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2a2a2a; /* Darker grey for contrast */
    color: white;
    padding: 10px 20px;
    flex: 0 0 auto;
}

header .logo {
    display: flex;
    align-items: center;
}

header .logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

header nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

header nav a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

header nav a:hover {
    text-decoration: underline;
}

/* Map Container Styling */
body.map-page .map-container {
    display: flex;
    flex: 1; /* Fills remaining space */
    background-color: #1c1c1c;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

/* Iframe Styling */
body.map-page .map-container iframe {
    flex: 1; /* Allows iframe to grow and fill the container */
    border: none;
    border-radius: 0;
}
