#rop-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.rop-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    width: 90%;
    max-width: 560px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    position: relative;
}

#rop-close-modal {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 22px;
}

#rop-open-modal {
    cursor: pointer;
}

#rop-response {
    margin-top: 12px;
}

/* Form field spacing and basic styling */
.rop-modal-content form input[type="text"],
.rop-modal-content form input[type="email"],
.rop-modal-content form textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 10px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.rop-modal-content form button[type="submit"] {
    display: inline-block;
    padding: 8px 16px;
    margin-top: 6px;
}

.rop-modal-content h2 {
    margin-top: 0;
    margin-bottom: 12px;
}


button#rop-open-modal {
    position: fixed;
    bottom: 80px;
    left: 10px;
}