#leaflet-map {
    z-index: 1;
    width: 100%;
    height: auto;
    max-width: 750px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.custom-cluster-wrapper {
    background: transparent !important;
    border: none !important;
}
.custom-cluster {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #215732;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border: 3px solid #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.leaflet-control-fullscreen-button {
    z-index: 2;
    background-color: #fff !important;
    border: 1px solid #ccc !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.leaflet-container:fullscreen {
    width: 100vw !important;
    height: 100vh !important;
}

.leaflet-pseudo-fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 99999;
}

.custom-marker svg {
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
    transition: transform 0.2s ease;
}

.custom-marker svg:hover {
    transform: scale(1.1);
}

.custom-cluster-wrapper {
    background: rgba(51, 136, 255, 0.6);
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    border: 2px solid #fff;
}
