#center-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -30px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/684/684908.png');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1000;
}

#center-choice {
    position: absolute;
    top: calc(50% + 20px);
    left: 50%;
    transform: translateX(-50%);
    display: none;
    flex-direction: row;
    gap: 10px;
    z-index: 1000;
    background: none;
    border-radius: 8px;
}

#center-choice button {
    min-width: 90px;
    font-size: 14px;
    cursor: pointer;
}

.choice-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 10px;
    border: none;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    font-size: 14px;
    cursor: pointer;
}

.choice-icon {
    width: 22px;
    height: 22px;
}