.cq-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    display: flex; justify-content: center; align-items: center;
}
.cq-modal-content {
    background: #fff; padding: 25px; border-radius: 10px;
    width: 90%; max-width: 450px; position: relative; text-align: right;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3); direction: rtl;
}
.cq-close-btn {
    position: absolute; top: 10px; left: 15px;
    font-size: 28px; cursor: pointer; color: #aaa;
}
.cq-close-btn:hover { color: #000; }
.cq-form-group { margin-bottom: 15px; }
.cq-form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.cq-form-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; }
#cq-submit-btn {
    width: 100%; padding: 12px; background: #28a745; color: #fff;
    border: none; border-radius: 5px; font-size: 18px; cursor: pointer;
}
#cq-submit-btn:hover { background: #218838; }
