.map-container {
    position: relative;
    display: inline-block;
    padding: 16px;
    font-family: "Merriweather";
}

.map {
    width: 90vh; /* Adjust width as needed */
    height: auto;
}

@media (max-width: 768px) {
    .map {
        width: 90%;
        height: auto; 
    }
}
 
.marker-nemrut {
    position: absolute;
    top: 59%;  /* Adjust as needed */
    left: 61%;
    width: 29px;
    height: 29px;
    background-color: red;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.marker-nemrut:hover {
    transform: scale(1.5);
}

/* Text - placed outside .marker */
.marker-nemrut-label {
    position: absolute;
    top: 53%; /* Adjust so it aligns correctly with the marker */
    left: 66%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    display: none;
    transform: translateX(-50%);
}

/* Show text when hovering over marker */
.marker-nemrut:hover + .marker-nemrut-label {
    display: block;
}

