body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: #0d1117;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

/* --- SIDEBAR IZQUIERDA --- */
.sidebar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px; /* Ancho fijo */
    background-color: #161b22;
    border-right: 1px solid #30363d;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #30363d;
    background: #0d1117;
}

/* Estadísticas en el menú */
.stats-container {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-bottom: 1px solid #30363d;
}

.stat-card {
    background: #21262d;
    padding: 8px;
    border-radius: 4px;
    border-left: 3px solid;
}

.sidebar-content {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.section-label {
    color: #8b949e;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.layer-item {
    margin-bottom: 10px;
}

/* --- EL MAPA --- */
#map {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 260px; /* Mismo ancho que el sidebar */
    right: 0;
    z-index: 1;
}

/* --- PANEL INFERIOR (Flotante) --- */
.bottom-panel {
    position: absolute;
    bottom: 20px;
    left: 280px; /* Sidebar + 20px margen */
    width: 400px; /* Ancho fijo para la ficha */
    background-color: #161b22;
    border: 1px solid #30363d;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 3000;
}

.table-dark {
    background-color: transparent !important;
    color: #c9d1d9;
}

/* Scrollbars finas */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #30363d; border-radius: 3px; }