.leaflet-control-static-legend {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.15);
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	border-radius: 4px;
	overflow: hidden;
	min-width: 300px;
	max-width: 450px;
	position: relative;   /* importante para que la fecha se ubique dentro */
	display: inline-block;	
}

.leaflet-control-static-legend .control-fecha {
	position: absolute;
	top: 5px;
	right: 8px;
	background: rgba(255, 255, 255, 0.7);
	padding: 2px 6px;
	border-radius: 3px;
	font-size: 14px;
	font-weight: bold;
  }

.static-legend__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 8px;
	background: #f7f7f7;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.static-legend__title {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.static-legend__content {
	padding: 1px;
}

.static-legend__image {
	display: block;
	max-width: 100%;
	height: auto;
}

@media (max-width: 420px) {
	.leaflet-control-static-legend {
		max-width: 200px;
	}
.leaflet-control-static-legend .control-fecha {
        top: 2px;
        right: 6px;
        background: rgba(255, 255, 255, 0.7);
        padding: 0;
        border-radius: 1px;
        font-size: 12px;
  }


}


