/* CENTERED POPUP (Modal Style) */
#popup {
    position: fixed !important;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;

    background: #ffffff;
    padding: 18px 20px;

    border-radius: 12px;

    width: 85vw;
    max-width: 320px;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

    display: none;

    text-align: center;
    direction: rtl; /* ✔ better for Persian text */
}

/* Popup Content Text */
#popup-content {
    font-size: 15px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 10px;
}

/* Buttons: shared styles */
#popup button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;

    border: none;
    border-radius: 8px;

    font-size: 15px;
    cursor: pointer;

    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: 0.2s ease;
}

/* Copy Link Button */
#popup-copy {
    background: #f0f0f0;
    color: #333;
}

#popup-copy:hover {
    background: #e4e4e4;
}

/* Google Maps Button */
#popup-goto {
    background: #0275d8;
    color: white;
}

#popup-goto:hover {
    background: #025cb1;
}

/* Close Button */
#popup-close {
    background: #d9534f;
    color: white;
}

#popup-close:hover {
    background: #c54340;
}

/* Very Small Mobile Optimization */
@media (max-width: 380px) {
    #popup {
        width: 90vw;
        max-width: 260px;
        padding: 12px;
    }

    #popup button {
        padding: 10px;
        font-size: 14px;
    }
}
