﻿html,
body
{
    margin:0;
    padding:0;
    width:100%;
    height:100%;
    overflow:auto;
    background:#202020;
}

#contenedorMapa
{
    position:relative;

    width:2500px;
    height:1500px;

    margin:auto;
}

#mapa
{
    position:absolute;

    left:0;
    top:0;

    width:2500px;
    height:1500px;
}

#capaMapa
{
    position:absolute;

    left:0;
    top:0;

    width:2500px;
    height:1500px;

    pointer-events:auto;
}

#popupZona
{
    position:absolute;

    display:none;

    min-width:260px;
    max-width:380px;

    max-height:500px;

    overflow-y:auto;

    box-sizing:border-box;

    background:white;

    border:1px solid #808080;

    border-radius:6px;

    box-shadow:0 4px 12px rgba(0,0,0,0.35);

    padding:10px;

    z-index:10000;
}

#popupTitulo
{
    font-weight:bold;

    margin-bottom:10px;

    border-bottom:1px solid #d0d0d0;

    padding-bottom:5px;
}

#barraSuperior
{
    height:42px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 20px;

    background:#2d3b45;

    color:white;

    font-family:Segoe UI;

    font-size:15px;
}

#barraIzquierda
{
    display:flex;

    align-items:center;

    gap:10px;
}

#barraDerecha
{
    display:flex;

    align-items:center;

    gap:15px;
}

#lblUsuario
{
    font-weight:bold;
}

#btnLogout
{
    padding:5px 12px;

    border:none;

    border-radius:4px;

    background:#d9534f;

    color:white;

    cursor:pointer;
}

#btnLogout:hover
{
    background:#c9302c;
}

#selectorMapa
{
    padding: 4px 8px;

    font-size: 14px;
}

