/* ============================
   🔒 مودل إدخال كود الدراسة
============================ */

/* خلفية المودل */
.study-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;                     /* مخفي افتراضياً */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* عند فتح المودل */
.study-modal-backdrop.is-visible {
    display: flex;                     /* يُظهر المودل */
}

/* صندوق المودل */
.study-modal {
    width: 380px;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    animation: modalPop .25s ease;
    position: relative;                /* مهم لتثبيت زر الإغلاق */
}

/* حركة لطيفة عند الظهور */
@keyframes modalPop {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

/* زر الإغلاق */
.study-modal-close {
    position: absolute;
    top: 10px;
    left: 12px;
    background: none;
    border: none;
    font-size: 26px;
    color: #444;
    cursor: pointer;
}

.study-modal-close:hover {
    color: #000;
}

/* عنوان المودل */
.study-modal-title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #111;
}

/* العنوان الفرعي */
.study-modal-subtitle {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* حقل الإدخال */
.study-modal-field label {
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.study-modal-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    outline: none;
    transition: border-color .20s ease;
}

.study-modal-field input:focus {
    border-color: #2F2F7F;
}

/* زر التأكيد */
.study-modal-submit {
    width: 100%;
    padding: 11px;
    border-radius: 12px;
    background: #2F2F7F;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 800;
    margin-top: 18px;
    cursor: pointer;
    transition: background .20s ease;
}

.study-modal-submit:hover {
    background: #1e1e5a;
}

/* رسالة الخطأ */
.study-modal-error {
    background: #fee2e2;
    border: 1px solid #ef4444;
    color: #b91c1c;
    padding: 8px 10px;
    border-radius: 10px;
    margin-bottom: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}
