.mapbox-container {
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.mapMarker {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.mapMarker:hover {
    transform: scale(1.1);
}

.mapboxgl-popup {
    z-index: 1000;
}

.mapboxgl-popup-content {
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mapboxgl-popup-close-button {
    display: none !important;
}

.mapboxgl-control-container {
    pointer-events: auto !important;
}