body {
    font-family: sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-bottom: 10px;
}

.controls {
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    gap: 10px;
    align-items: center;
}

.controls label {
    font-weight: bold;
}

.controls select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
}

.official-links {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

.official-links a {
    color: #007bff;
    text-decoration: none;
}

.official-links a:hover {
    text-decoration: underline;
}

#map {
    height: 80vh;
    width: 90%;
    max-width: 1200px;
    margin-top: 10px;
    border-radius: 8px;
}

.info {
    padding: 6px 8px;
    font: 14px/16px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
}
.info h4 {
    margin: 0 0 5px;
    color: #777;
}