/* ... CSS Base ... */
/* Estilos Generales y Reseteo Básico */
body, html {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    height: 100%;
    overflow: hidden; /* Evita scrolls no deseados */
}

* {
    box-sizing: border-box;
}

#map {
    width: 100vw;
    height: 100vh;
}

.control-panel {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000; /* Asegura que esté sobre el mapa */
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    width: 250px;
}

#activate-btn {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    font-weight: bold;
    color: white;
    background-color: #dc3545;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#activate-btn:hover {
    background-color: #c82333;
}

.layer-toggles {
    display: none; /* Oculto por defecto */
}

.layer-toggles h3 {
    margin-top: 0;
}

.layer-toggles label {
    display: block;
    margin-bottom: 8px;
}