html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
}

#barra {
    background-color: #34322f;
    display: flex;
    gap: 10px;
    /* Espacio entre los botones */
    padding: 10px;
}

.btn-cuadrado {
    width: 33px;
    height: 33px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-cuadrado img {
    width: 32px;
    /* Tamaño del icono: ni muy grande ni muy chico */
    height: 32px;
    /* Esto asegura que el icono no se deforme */
    object-fit: contain;
    filter: invert(1);
}

.btn-cuadrado {
    position: relative;
    /* Clave para que la etiqueta no se mueva de su lugar */
}