#map{
	width: 100%;
	height: 900px;
}
table {
	width: 100%;
	border-collapse: collapse;
	border:hidden;
}
h1 {
	text-align: center;
	font-family: "Source Sans Pro", sans-serif; 
}

/* Contenedor general */
.legend-control {
    min-width: 180px;
    max-width: 220px;
    min-height: 187px;      /* 👈 NUEVO: asegura espacio vertical */
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 12px 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    overflow: hidden;
}

/* Título */
.legend-title {
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
    color: #333;
}

.legend-control img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    transform: scale(1.5);
    transform-origin: top center;
}

/* Ajuste Leaflet */
.leaflet-bottom.leaflet-right .legend-control {
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .legend-control {
        max-width: 75vw;
        min-height: 164px;   /* un poco menos en móvil */
        padding: 8px 10px 14px;
    }

    .legend-control img {
        transform: scale(1.3);
    }
}

