body {
    font-family: Arial, sans-serif;
    background-color: #f4f7f9;
    color: #333;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #007bff;
    margin-bottom: 25px;
}

h2 {
    color: #495057;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.2em;
}

/* --- Cajas de Búsqueda --- */
.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

#cpInput, #localityInput, #provinceSelect {
    flex-grow: 1;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #fff; /* Asegura el fondo blanco */
}

button {
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

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

/* --- Contenedor de Resultados --- */
.results-container {
    padding: 15px;
    border-radius: 8px;
    min-height: 50px;
    margin-bottom: 20px;
    border-left: 5px solid #28a745;
    background-color: #e9f7ed;
}

.initial-message {
    color: #6c757d;
    text-align: center;
}

.result-item strong {
    color: #0056b3;
    display: inline-block;
    width: 120px;
}

/* Estilos para la lista de resultados de Localidad */
.locality-list {
    list-style: none;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
}

.locality-list li {
    padding: 8px;
    border-bottom: 1px solid #dee2e6;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.9em;
}

.locality-list li:hover {
    background-color: #f8f9fa;
}

.locality-list li:last-child {
    border-bottom: none;
}

/* --- Mapa --- */
#map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
}