.map-event-wr.active #map-event-view{
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: #eee;
}

.onPublicPageMap {
    width: 100%;
    height: 500px;
    position: relative;
}

.leaflet-popup-content{
    margin: 10px;
}

.loader-colab {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #ccc;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


.map-event-wr{
    position: relative;
}

.map-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 34px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: none;
}

.map-close-button:hover {
    background-color: #f2f2f2;
    color: #000;
}
.map-event-wr.active .map-close-button {
    display: block;
}

@media (max-width: 575px) {
    .onPublicPageMap {
        height: 400px;
    }
}

.leaflet-bottom.leaflet-right{
    display: none;
}

