html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.toolbar {
    height: 50px;
    background: #2c3e50;
    color: white;
    padding: 10px;
}






/* NAVBAR SUPERIOR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 60px;
    /*background: #1f2d3d;*/
	background: #005A9C;
	
    color: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 20px;
    z-index: 1000;
}

.navbar .logo {
    font-weight: bold;
    font-size: 18px;
}

.navbar .menu button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 10px;
    margin-left: 8px;
    cursor: pointer;
    border-radius: 4px;
}

.navbar .menu button:hover {
    background: rgba(255,255,255,0.1);
}

/* MAPA A PANTALLA COMPLETA MENOS NAVBAR */
#map {
    position: absolute;
    top: 60px;   /* altura navbar */
    left: 0;
    right: 0;
    bottom: 0;
}

/*
#map {
    width: 100%;
    height: calc(100vh - 50px);
}
*/





.floating-controls{
    position:absolute;
    right:14px;
    bottom:14px;
	
	
	/*
	bottom:calc(var(--bottom-panel-height) + 20px);
	*/	

    z-index:1100;

    display:flex;
    flex-direction:column;
    gap:8px;
}


.floating-btn{
    width:52px;
    height:52px;

    border-radius:50%;

    background:rgba(10,15,22,.85);

    border:1px solid rgba(255,255,255,.12);

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    backdrop-filter:blur(10px);

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.25);
}
