/* Modal Overlay */
.re-one-click-modal {
    display: none; /* hidden by default */
    position: fixed;
    inset: 0; /* top/right/bottom/left = 0 */
    background: rgba(0,0,0,0.6);
    z-index: 9999;

    /* Flex to center content */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.re-one-click-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 320px;
    max-width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.25s ease;
}

/* Fade in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.re-one-click-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Form Inputs */
.re-one-click-content input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Submit Button */
.re-one-click-content button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 26px;
    cursor: pointer;
}

button.re-one-click-btn {
    padding: 10px 20px;
    margin-left: 10px;
}

/* Message */
.re-one-click-message {
    margin-top: 10px;
    font-weight: 600;
    display: none;
}
