/* Basic CSS for body */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0; /* Set light background color */
}

/* Container for the SVG */
#svg-container {
    width: 100%; /* Use full width of the viewport */
    height: 80vh; /* Use a larger height for the container */
    max-width: 1200px; /* Optional: limit max size */
    background-color: white; /* White background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Shadow around the map */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden;
    padding: 20px; /* Padding around the map */
}

/* Optional CSS to style the SVG itself */
#svg-container svg {
    width: 100%; /* Make SVG fit the container */
    height: 100%; /* Make SVG fill the height of the container */
}

/* Style for error message */
#error-message {
    color: red;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
}


