.marker-area {
    position: absolute;
    border: 2px solid transparent;
    /* border transparan untuk area */
}

/* Marker */
.marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: rgba(253, 16, 16, 0);
    border-radius: 50%;
    cursor: pointer;
}

/* Popup */
.popup {
    width: 600px;
    /* Lebar diperbesar */
    max-width: 900px;
    /* Lebar maksimal */
    padding: 15px;
    /* Padding lebih besar */
    font-size: 18px;
    /* Ukuran font lebih besar */
    line-height: 1.5;
    /* Tambahkan spasi antar teks */
    font-weight: normal;
    text-align: justify;
}

/* Styling judul di popup */
.popup-content span {
    font-size: 20px;
    /* Ukuran judul lebih besar */
    font-weight: bold;
}