﻿/* =========================
   حقل نص يمين
   ========================= */
.AtxtR {
    direction: rtl;
    text-align: right;
    unicode-bidi: plaintext;
    writing-mode: horizontal-tb;
    white-space: nowrap; /* سطر واحد */
}

/* =========================
   حقل نص يسار
   ========================= */
.AtxtL {
    direction: ltr;
    text-align: left;
    unicode-bidi: plaintext;
    writing-mode: horizontal-tb;
    white-space: nowrap; /* سطر واحد */
}

/* =========================
   مذكرات مع التفاف النص (مشترك)
   ========================= */
.note1,
.note2,
.code1 {
    unicode-bidi: plaintext;
    writing-mode: horizontal-tb;
    resize: vertical;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 120px;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* =========================
   مذكرة يمين مع التفاف النص
   ========================= */
.note1 {
    direction: rtl;
    text-align: right;
    line-height: 1.9;
    font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
    font-size: 1rem;
}

/* =========================
   مذكرة وسط مع التفاف النص
   ========================= */
.note2 {
    direction: rtl;
    text-align: center;
    line-height: 1.9;
    font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
    font-size: 1rem;
}

/* =========================
   مذكرة يسار مع التفاف النص
   ========================= */
.code1 {
    direction: ltr;
    text-align: left;
    line-height: 1.6;
    font-family: "Cascadia Code", "Consolas", "Courier New", monospace;
    font-size: 0.95rem;
    tab-size: 4;
}

/* =========================
   مذكرة يسار بدون التفاف النص
   ========================= */
.code2 {
    direction: ltr;
    text-align: left;
    unicode-bidi: plaintext;
    writing-mode: horizontal-tb;
    resize: vertical;
    overflow-y: auto; /* عمودي عند الحاجة */
    overflow-x: auto; /* أفقي عند الحاجة */
    min-height: 120px;
    line-height: 1.6;
    font-family: "Cascadia Code", "Consolas", "Courier New", monospace;
    font-size: 0.95rem;
    tab-size: 4;
    white-space: pre; /* بدون التفاف */
    overflow-wrap: normal;
    word-break: normal;
}
