/* ============================================================
   קודקס מאפס, עיצוב מדריך זה בלבד.

   כל מה שהעמוד הזה צריך נמצא ב-guides/guide-base.css, שנטען לפניו,
   חוץ מדבר אחד: הווריאנט rtl-prompt של code-block.

   שבעת מקטעי הקוד כאן מתחלקים לשישה שנשארים ltr, פקודות התקנה
   באנגלית, ולפרומפט אחד בעברית שהקורא מעתיק לקודקס. צרכן אחד זה
   עדיין צרכן, ובלי ארבעת הכללים האלה הפרומפט הזה היה נשבר.

   ארבעת הכללים הועתקו מ-guides/claude-usage-limits.css כמו שהם,
   רק עם שם ההיקף שהוחלף. לא נוסף כאן שום ערך חדש.

   inline-code לא הועתק, כי אין בדף הזה אף צ׳יפ קוד בשורה,
   ו-page-note לא הועתק כי אין בדף הערת סיום כזאת.
   ============================================================ */

/* ---------- Hebrew prompt block, ported verbatim from guides/hyperframes.css.
   Same dark .code-block shell, but the content is Hebrew prose rather than a
   terminal command, so the direction flips back to rtl and the text wraps
   instead of scrolling. Nothing here introduces a new token value. ---------- */
.guide-codex-install .code-block.rtl-prompt pre{
  direction:rtl;
  text-align:start;
  white-space:pre-wrap;
  overflow-x:hidden;
}
.guide-codex-install .code-block.rtl-prompt::after{
  /* wrapped text never overflows horizontally, so the LTR blocks' edge-fade
     (which signals more content off-screen) doesn't apply here */
  display:none;
}
.guide-codex-install .code-block.rtl-prompt .copy-btn{
  inset-inline-start:auto;
  inset-inline-end:8px;
}
.guide-codex-install .code-block.rtl-prompt code{
  min-width:0;
  display:block;
}
