/*! Form Blocker - Prevent Duplicate Submissions */

/* Disable submitted forms completely */
form.form-already-submitted,
form.form-disabled,
form[data-disabled="true"] {
    pointer-events: none !important;
    user-select: none !important;
    position: relative;
}

form.form-already-submitted *,
form.form-disabled *,
form[data-disabled="true"] * {
    pointer-events: none !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}

/* Style for disabled inputs */
form.form-already-submitted input,
form.form-already-submitted textarea,
form.form-already-submitted select,
form.form-already-submitted button {
    background-color: #f5f5f5 !important;
    border-color: #ddd !important;
    color: #999 !important;
}

/* Hide submit button completely for submitted forms */
form.form-already-submitted button[type="submit"],
form.form-already-submitted .submit-btn,
form.form-already-submitted .submit {
    display: none !important;
}

/* Already submitted message styling */
.already-submitted-message {
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

/* Overlay to prevent any clicks */
form.form-already-submitted::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 5;
    cursor: not-allowed;
}

/* Ensure message stays on top */
.already-submitted-message {
    position: relative;
    z-index: 15 !important;
}

/* Hide all forms for users who already submitted */
body.form-already-submitted-user form.prshorshort,
body.form-already-submitted-user form.unform,
body.form-already-submitted-user form#contactForm {
    display: none !important;
}

body.form-already-submitted-user .inline-form-wrapper::before,
body.form-already-submitted-user .hero-form-card::before {
    content: '✅ تم إرسال بياناتك بنجاح! سيتم التواصل معك قريباً.';
    display: block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}



