/* Full height container */
html, body {
    height: 100%;
    margin: 0;
}

/* Flex container for map + settings */
#container {
    display: flex;
    height: 100vh; /* full viewport height */
}

/* Map takes most of the width */
#map {
    flex: 1; /* fills remaining space */
}

/* Settings panel on the right */
#settings {
    width: 300px; /* fixed width for settings */
    padding: 20px;
    background-color: #f5f5f5;
    border-left: 1px solid #ccc;
    box-sizing: border-box;
    overflow-y: auto; /* scroll if content is tall */
    font-family: Arial, sans-serif;
}

#settings button {
    padding: 5px 10px;
    margin-top: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

#settings button:hover {
    background-color: #0056b3;
}


#overlay {
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-family: monospace;
    padding: 10px;
    z-index: 100;
}

#overlay p {
    margin: 4px 0;
}