.map-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border: 1px solid #ccc;
    cursor: grab;
}
@media screen and (max-width: 767px) {
    .map-container {
        width: 94%;
        height: 370px;
    }
}
.map {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: top left;
}
.pin {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.popup {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    padding: 15px 20px;
    padding-bottom: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 11;
    font-size: 14px;
    border-radius: 10px;
}
.popup h3 {
    font-size: 14px;
}
.popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-weight: bold;
}

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

.controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}
.controls button {
    display: block;
    margin: 5px 0;
    padding: 10px;
    font-size: 16px;
    min-width: 40px;
}