* {
margin: 0;
box-sizing: border-box;
}
.leaflet-map {
height: var(--map-height, 100vh);
width: 100%;
}
.leaflet-map .leaflet-control-attribution,
.leaflet-map .leaflet-control-logo {
display: none !important;
}
.leaflet-map .leaflet-tooltip {
background: #fff;
border: none;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
color: #222;
overflow: hidden;
padding: 0;
}
.leaflet-map .leaflet-tooltip-content {
border-radius: 12px;
box-sizing: border-box;
display: flex;
flex-direction: column;
position: relative;
width: clamp(150px, 250px, 15vw);
}
.leaflet-map .leaflet-image {
width: 100%;
}
.leaflet-map .leaflet-tooltip-texts {
display: flex;
flex-direction: column;
gap: 10px;
padding: 10px;
}
.leaflet-map .leaflet-title {
font-size: 1.1em;
margin: 0;
}
.leaflet-paragraph {
font-size: 0.95em;
margin: 0;
white-space: normal;
}
.leaflet-map .marker-cluster,
.leaflet-map .marker-cluster div {
--background: 255, 0, 0;
--opacity: 0.5;
background-color: rgba(var(--background), var(--opacity)) !important;
color: #fff !important;
}