* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

#mapa {
    height: 100%;
    width: 100%;
}

/* Selector de idioma */
#language-selector {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background: white;
    padding: 8px 15px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s;
    color: #666;
}

.lang-btn:hover {
    background: #f0f0f0;
}

.lang-btn.active {
    background: #1a73e8;
    color: white;
}

#legend {
    font-family: Arial, sans-serif;
    background: #fff;
    padding: 10px;
    margin: 10px;
    border: 3px solid #000;
    max-width: 200px;
}

#legend h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
}

#legend img {
    vertical-align: middle;
    margin-right: 5px;
}

#legend a {
    text-decoration: none;
    color: #1a73e8;
    display: block;
    padding: 5px;
    margin: 2px 0;
    border-radius: 3px;
    transition: background 0.2s;
}

#legend a:hover {
    background: #f0f0f0;
}

.gm-style-iw {
    max-width: 300px !important;
}
