.leaflet-control-basemap {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 0 5px rgba(0,0,0,0.4);
    width: 110px;
    height: 110px;
}

.basemap-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: pointer;
}

.basemap-img.loading {
    opacity: 0;
    transform: scale(0.95);
}