#map {
    height: 100%;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#loading {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
}

#filtros {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    z-index: 1000;
    max-width: 550px;
}

#filtros h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.filtro-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.filtro-item {
    flex: 1;
    min-width: 120px;
}

.filtro-item label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.filtro-item select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
}

.filtro-item select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.checkbox-group {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-item label {
    cursor: pointer;
    font-size: 13px;
}

#contador {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    text-align: center;
    padding: 8px;
    background: #f0f0f0;
    border-radius: 4px;
}

#contador.sin-resultados {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
    font-weight: bold;
}

.leyenda {
    margin-top: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    font-size: 12px;
}

.leyenda-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.leyenda-item img {
    width: 20px;
    height: 20px;
}