/**
 * עיצוב תפריט נגישות מלא
 */

/* =====================================
   מיכל התפריט
   ===================================== */
.ttfc-accessibility-widget {
    position: fixed;
    left: 0;
    bottom: 100px;
    z-index: 99998;
    direction: rtl;
    font-family: var(--font-family-daat);
}

/* =====================================
   כפתור הנגישות הצף
   ===================================== */
.ttfc-accessibility-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    
    background: linear-gradient(135deg, #273B6B 0%, #1a2a4d 100%);
    color: #fff;
    border: none;
    border-radius: 0 50% 50% 0;
    padding: 0;
    width: 48px;
    height: 48px;
    
    cursor: pointer;
    
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ttfc-accessibility-trigger:hover {
    background: linear-gradient(135deg, #1a2a4d 0%, #0d1526 100%);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(3px);
}

.ttfc-accessibility-trigger:focus-visible {
    outline: 3px solid #FFD700 !important;
    outline-offset: 2px !important;
}

.ttfc-accessibility-trigger svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* כפתור פעיל (תפריט פתוח) */
.ttfc-accessibility-trigger[aria-expanded="true"] {
    background: linear-gradient(135deg, #1a2a4d 0%, #0d1526 100%);
    border-radius: 0 0 12px 0;
}

/* =====================================
   התפריט הנפתח המלא
   ===================================== */
.ttfc-accessibility-menu {
    position: absolute;
    bottom: 0;
    left: 48px;
    width: 320px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: #fff;
    border-radius: 0 16px 16px 0;
    box-shadow: 6px 0 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.ttfc-accessibility-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* כותרת התפריט */
.ttfc-menu-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #273B6B 0%, #1a2a4d 100%);
    color: #fff;
    border-radius: 0 16px 0 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.ttfc-menu-header svg {
    flex-shrink: 0;
}

.ttfc-menu-header span {
    flex: 1;
}

.ttfc-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.ttfc-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ttfc-menu-close:focus-visible {
    outline: 2px solid #FFD700 !important;
    outline-offset: 2px !important;
}

/* גוף התפריט */
.ttfc-menu-body {
    padding: 0.75rem;
}

/* סקציות בתפריט */
.ttfc-menu-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.ttfc-menu-section:last-child {
    margin-bottom: 0;
}

.ttfc-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.75rem;
}

.ttfc-section-title svg {
    stroke: #273B6B;
}

/* =====================================
   בקרות גודל טקסט
   ===================================== */
.ttfc-font-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.ttfc-font-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 2px solid #273B6B;
    border-radius: 10px;
    color: #273B6B;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.ttfc-font-btn:hover {
    background: #273B6B;
    color: #fff;
}

.ttfc-font-btn:focus-visible {
    outline: 2px solid #FFD700 !important;
    outline-offset: 2px !important;
}

.ttfc-font-display {
    min-width: 60px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* =====================================
   רשת אפשרויות
   ===================================== */
.ttfc-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.ttfc-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 0.5rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 85px;
}

.ttfc-option-btn:hover {
    border-color: #273B6B;
    background: #f0f4ff;
}

.ttfc-option-btn:focus-visible {
    outline: 2px solid #FFD700 !important;
    outline-offset: 2px !important;
}

.ttfc-option-btn[aria-pressed="true"] {
    background: #273B6B;
    border-color: #273B6B;
    color: #fff;
}

.ttfc-option-btn[aria-pressed="true"] .ttfc-option-icon svg {
    stroke: #fff;
}

.ttfc-option-btn[aria-pressed="true"] .ttfc-option-text {
    color: #fff;
}

.ttfc-option-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.ttfc-option-icon svg {
    stroke: #555;
    transition: stroke 0.2s;
}

.ttfc-option-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    text-align: center;
    line-height: 1.2;
}

/* =====================================
   בחירת צבע סמן
   ===================================== */
.ttfc-color-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.ttfc-color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #e0e0e0;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.ttfc-color-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ttfc-color-btn:focus-visible {
    outline: 2px solid #FFD700 !important;
    outline-offset: 2px !important;
}

.ttfc-color-btn[aria-checked="true"] {
    border-color: #273B6B;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #273B6B;
}

.ttfc-color-btn[aria-checked="true"]::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
}

/* צבעי כפתורים */
.ttfc-color-default {
    background: linear-gradient(135deg, #fff 50%, #000 50%);
}

.ttfc-color-default[aria-checked="true"]::after {
    color: #333;
    text-shadow: 0 0 2px #fff;
}

.ttfc-color-black {
    background: #000;
}

.ttfc-color-black[aria-checked="true"]::after {
    color: #fff;
}

.ttfc-color-white {
    background: #fff;
}

.ttfc-color-white[aria-checked="true"]::after {
    color: #000;
}

.ttfc-color-yellow {
    background: #FFD700;
}

.ttfc-color-yellow[aria-checked="true"]::after {
    color: #000;
}

.ttfc-color-blue {
    background: #0066CC;
}

.ttfc-color-blue[aria-checked="true"]::after {
    color: #fff;
}

.ttfc-color-red {
    background: #CC0000;
}

.ttfc-color-red[aria-checked="true"]::after {
    color: #fff;
}

/* =====================================
   כפתור איפוס
   ===================================== */
.ttfc-menu-footer {
    padding: 0.75rem;
    border-top: 1px solid #e0e0e0;
}

.ttfc-reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: #f8f9fa;
    border: 2px solid #dc3545;
    border-radius: 10px;
    color: #dc3545;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.ttfc-reset-btn:hover {
    background: #dc3545;
    color: #fff;
}

.ttfc-reset-btn:hover svg {
    stroke: #fff;
}

.ttfc-reset-btn:focus-visible {
    outline: 2px solid #FFD700 !important;
    outline-offset: 2px !important;
}

.ttfc-reset-btn svg {
    stroke: #dc3545;
    transition: stroke 0.2s;
}

/* כפתור סגירה במובייל - מוסתר בדסקטופ */
.ttfc-mobile-close-btn {
    display: none;
}

/* =====================================
   התאמות למובייל
   ===================================== */
@media screen and (max-width: 768px) {
    .ttfc-accessibility-widget {
        bottom: 80px;
    }
    
    .ttfc-accessibility-menu {
        width: 300px;
        max-height: calc(100vh - 100px);
    }
    
    .ttfc-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ttfc-option-btn {
        min-height: 75px;
        padding: 0.75rem 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    /* הסתרת הווידג'ט כברירת מחדל במובייל */
    .ttfc-accessibility-widget {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        bottom: 100px;
        left: 15px;
        right: auto;
        transition: opacity 0.3s, visibility 0.3s;
    }
    
    /* הצגת הווידג'ט רק כשתפריט הצד פתוח */
    body.mobile-menu-active .ttfc-accessibility-widget {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    /* כפתור פתיחה - עגול */
    .ttfc-accessibility-trigger {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    }
    
    .ttfc-accessibility-trigger svg {
        width: 24px;
        height: 24px;
    }
    
    /* הסתרת הכפתור כשתפריט הנגישות פתוח */
    .ttfc-accessibility-widget.menu-open .ttfc-accessibility-trigger {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    
    /* התפריט נפתח מלמטה */
    .ttfc-accessibility-menu {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        top: auto;
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
        z-index: 100000;
    }
    
    .ttfc-accessibility-menu.is-open {
        transform: translateY(0);
    }
    
    .ttfc-menu-header {
        border-radius: 16px 16px 0 0;
        position: relative;
        padding-top: 1.25rem;
    }
    
    /* ידית גרירה למעלה */
    .ttfc-menu-header::before {
        content: '';
        position: absolute;
        top: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
        border-radius: 2px;
    }
    
    .ttfc-menu-body {
        max-height: calc(85vh - 130px);
        overflow-y: auto;
        padding-bottom: 20px;
    }
    
    /* כפתור סגירה במובייל - מוסתר */
    .ttfc-mobile-close-btn {
        display: none !important;
    }
    
    /* overlay כהה */
    .ttfc-accessibility-widget::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        pointer-events: none;
        z-index: 99999;
    }
    
    .ttfc-accessibility-widget.menu-open::after {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* =====================================
   עצירת אנימציות - מופעל על ה-body
   ===================================== */
html.ttfc-reduced-motion,
html.ttfc-reduced-motion body,
html.ttfc-reduced-motion *,
html.ttfc-reduced-motion *::before,
html.ttfc-reduced-motion *::after {
    animation: none !important;
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

/* החרגת תפריט הנגישות */
.ttfc-accessibility-widget,
.ttfc-accessibility-widget *,
.ttfc-accessibility-menu,
.ttfc-accessibility-trigger {
    transition: all 0.3s ease !important;
}

/* עצירת SVG animations */
html.ttfc-reduced-motion svg,
html.ttfc-reduced-motion svg * {
    animation: none !important;
    animation-play-state: paused !important;
}

/* עצירת ספינרים וטעינות */
html.ttfc-reduced-motion [class*="spin"],
html.ttfc-reduced-motion [class*="loader"],
html.ttfc-reduced-motion [class*="loading"],
html.ttfc-reduced-motion [class*="spinner"] {
    animation: none !important;
}

/* עצירת אנימציות ספציפיות */
html.ttfc-reduced-motion .animated,
html.ttfc-reduced-motion .animate__animated,
html.ttfc-reduced-motion [class*="animate-"],
html.ttfc-reduced-motion [class*="fade"],
html.ttfc-reduced-motion [class*="slide"],
html.ttfc-reduced-motion [class*="bounce"],
html.ttfc-reduced-motion [class*="pulse"] {
    animation: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* =====================================
   ניגודיות גבוהה
   ===================================== */
html.ttfc-high-contrast {
    filter: contrast(1.3);
}

html.ttfc-high-contrast body {
    background: #fff !important;
}

html.ttfc-high-contrast *:not(.ttfc-accessibility-widget *) {
    border-color: #000 !important;
}

html.ttfc-high-contrast a:not(.ttfc-accessibility-widget a),
html.ttfc-high-contrast button:not(.ttfc-accessibility-widget button) {
    color: #000 !important;
    text-decoration: underline !important;
}

/* =====================================
   הדגשת קישורים
   ===================================== */
html.ttfc-highlight-links a:not(.ttfc-accessibility-widget a) {
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 3px !important;
    background-color: rgba(255, 255, 0, 0.3) !important;
    padding: 2px 4px !important;
}

html.ttfc-highlight-links a:hover:not(.ttfc-accessibility-widget a) {
    background-color: rgba(255, 255, 0, 0.5) !important;
}

/* =====================================
   פונט קריא (ידידותי לדיסלקציה)
   ===================================== */
html.ttfc-readable-font,
html.ttfc-readable-font body,
html.ttfc-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: 0.05em !important;
    word-spacing: 0.1em !important;
}

/* =====================================
   מרווח שורות מוגדל
   ===================================== */
html.ttfc-line-spacing,
html.ttfc-line-spacing body,
html.ttfc-line-spacing p,
html.ttfc-line-spacing li,
html.ttfc-line-spacing span,
html.ttfc-line-spacing div {
    line-height: 2 !important;
}

/* =====================================
   גודל טקסט מותאם
   ===================================== */
html.ttfc-font-size-110 { font-size: 110% !important; }
html.ttfc-font-size-120 { font-size: 120% !important; }
html.ttfc-font-size-130 { font-size: 130% !important; }
html.ttfc-font-size-140 { font-size: 140% !important; }
html.ttfc-font-size-150 { font-size: 150% !important; }

/* =====================================
   נגישות - מסגרת פוקוס למקלדת (TAB)
   ===================================== */

/* מסגרת שחורה לכל האלמנטים האינטראקטיביים בפוקוס מקלדת */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
[role="button"]:focus-visible,
[role="link"]:focus-visible,
[role="menuitem"]:focus-visible,
[role="menuitemcheckbox"]:focus-visible,
[role="menuitemradio"]:focus-visible,
[role="tab"]:focus-visible,
[role="checkbox"]:focus-visible,
[role="radio"]:focus-visible,
[role="switch"]:focus-visible,
[contenteditable="true"]:focus-visible,
summary:focus-visible,
details:focus-visible {
    outline: 2px solid #000000 !important;
    outline-offset: 2px !important;
}

/* מסגרת שחורה לבלוקים וכרטיסי כתבות */
.dual-headline-banner a.dual-headline-link:focus-visible,
a.dual-headline-link:focus-visible,
.single-banner a.single-banner-link:focus-visible,
a.single-banner-link:focus-visible,
.article-card-square a:focus-visible,
.main-post-card a:focus-visible,
.side-post-card a:focus-visible,
.article-card a:focus-visible,
.opinion-card a:focus-visible,
.category-card:focus-visible,
.featured-category a:focus-visible,
.posts-tab-item a:focus-visible,
.horizontal-post a:focus-visible,
.post-card a:focus-visible,
.wp-block-post a:focus-visible,
/* תמונות בדפי קטגוריות */
.category-post-image-link > a:focus-visible,
figure.category-post-image-link > a:focus-visible,
figure.wp-block-post-featured-image > a:focus-visible,
.archive .wp-block-post-featured-image > a:focus-visible,
.category-posts-grid figure > a:focus-visible,
.archive figure.wp-block-post-featured-image a:focus-visible {
    outline: 3px solid #000000 !important;
    outline-offset: 4px !important;
    z-index: 10 !important;
    position: relative;
}


/* התאמה לאלמנטים עם רקע כהה - מסגרת לבנה עם צל שחור */
.ttfc-accessibility-trigger:focus-visible,
.ttfc-menu-close:focus-visible,
header a:focus-visible,
.site-header a:focus-visible,
nav a:focus-visible,
footer a:focus-visible,
.site-footer a:focus-visible {
    outline: 2px solid #000000 !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}


/* =====================================
   נגישות - טקסט מוסתר ויזואלית
   ===================================== */

/* מחלקה להסתרת טקסט ויזואלית עם שמירה על נגישות לקוראי מסך */
.screen-reader-text,
.ttfc-page-title-h1.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* כשהטקסט מקבל פוקוס - הצגתו (לקישורי דילוג) */
.screen-reader-text:focus {
    position: fixed !important;
    top: 5px;
    left: 5px;
    width: auto !important;
    height: auto !important;
    padding: 1rem 1.5rem !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    white-space: normal !important;
    background: #273B6B;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    z-index: 100000;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* =====================================
   הגדרות לפי prefers-reduced-motion
   ===================================== */
@media (prefers-reduced-motion: reduce) {
    .ttfc-accessibility-trigger,
    .ttfc-accessibility-menu {
        transition: none;
    }
}

/* =====================================
   סמן עכבר גדול
   ===================================== */

/* סמנים בסיס - גדולים */
html.ttfc-large-cursor,
html.ttfc-large-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M8 8L8 40L18 30L26 42L32 38L24 26L38 26L8 8Z' fill='%23000000' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E") 4 4, auto !important;
}

html.ttfc-large-cursor a,
html.ttfc-large-cursor button,
html.ttfc-large-cursor [role="button"],
html.ttfc-large-cursor input[type="submit"],
html.ttfc-large-cursor input[type="button"],
html.ttfc-large-cursor [onclick],
html.ttfc-large-cursor a *,
html.ttfc-large-cursor button *,
html.ttfc-large-cursor [role="button"] * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M16 6C10.477 6 6 10.477 6 16V32C6 37.523 10.477 42 16 42H32C37.523 42 42 37.523 42 32V16C42 10.477 37.523 6 32 6H16ZM16 10H32C35.309 10 38 12.691 38 16V32C38 35.309 35.309 38 32 38H16C12.691 38 10 35.309 10 32V16C10 12.691 12.691 10 16 10Z' fill='%23000000' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M18 20L24 26L30 20' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 24 24, pointer !important;
}

html.ttfc-large-cursor input[type="text"],
html.ttfc-large-cursor input[type="email"],
html.ttfc-large-cursor input[type="password"],
html.ttfc-large-cursor input[type="search"],
html.ttfc-large-cursor input[type="url"],
html.ttfc-large-cursor input[type="tel"],
html.ttfc-large-cursor input[type="number"],
html.ttfc-large-cursor textarea,
html.ttfc-large-cursor [contenteditable="true"] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M24 6V42M18 6H30M18 42H30' fill='none' stroke='%23000000' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M24 6V42M18 6H30M18 42H30' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") 24 24, text !important;
}

/* =====================================
   צבעי סמן - שחור (ברירת מחדל כשגדול)
   ===================================== */
html.ttfc-cursor-black,
html.ttfc-cursor-black * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M8 8L8 40L18 30L26 42L32 38L24 26L38 26L8 8Z' fill='%23000000' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E") 4 4, auto !important;
}

html.ttfc-cursor-black a,
html.ttfc-cursor-black button,
html.ttfc-cursor-black [role="button"],
html.ttfc-cursor-black input[type="submit"],
html.ttfc-cursor-black input[type="button"],
html.ttfc-cursor-black a *,
html.ttfc-cursor-black button * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M16 6C10.477 6 6 10.477 6 16V32C6 37.523 10.477 42 16 42H32C37.523 42 42 37.523 42 32V16C42 10.477 37.523 6 32 6H16ZM16 10H32C35.309 10 38 12.691 38 16V32C38 35.309 35.309 38 32 38H16C12.691 38 10 35.309 10 32V16C10 12.691 12.691 10 16 10Z' fill='%23000000' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M18 20L24 26L30 20' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 24 24, pointer !important;
}

/* =====================================
   צבעי סמן - לבן
   ===================================== */
html.ttfc-cursor-white,
html.ttfc-cursor-white * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M8 8L8 40L18 30L26 42L32 38L24 26L38 26L8 8Z' fill='%23FFFFFF' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E") 4 4, auto !important;
}

html.ttfc-cursor-white a,
html.ttfc-cursor-white button,
html.ttfc-cursor-white [role="button"],
html.ttfc-cursor-white input[type="submit"],
html.ttfc-cursor-white input[type="button"],
html.ttfc-cursor-white a *,
html.ttfc-cursor-white button * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M16 6C10.477 6 6 10.477 6 16V32C6 37.523 10.477 42 16 42H32C37.523 42 42 37.523 42 32V16C42 10.477 37.523 6 32 6H16ZM16 10H32C35.309 10 38 12.691 38 16V32C38 35.309 35.309 38 32 38H16C12.691 38 10 35.309 10 32V16C10 12.691 12.691 10 16 10Z' fill='%23FFFFFF' stroke='%23000000' stroke-width='1'/%3E%3Cpath d='M18 20L24 26L30 20' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 24 24, pointer !important;
}

/* =====================================
   צבעי סמן - צהוב
   ===================================== */
html.ttfc-cursor-yellow,
html.ttfc-cursor-yellow * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M8 8L8 40L18 30L26 42L32 38L24 26L38 26L8 8Z' fill='%23FFD700' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E") 4 4, auto !important;
}

html.ttfc-cursor-yellow a,
html.ttfc-cursor-yellow button,
html.ttfc-cursor-yellow [role="button"],
html.ttfc-cursor-yellow input[type="submit"],
html.ttfc-cursor-yellow input[type="button"],
html.ttfc-cursor-yellow a *,
html.ttfc-cursor-yellow button * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M16 6C10.477 6 6 10.477 6 16V32C6 37.523 10.477 42 16 42H32C37.523 42 42 37.523 42 32V16C42 10.477 37.523 6 32 6H16ZM16 10H32C35.309 10 38 12.691 38 16V32C38 35.309 35.309 38 32 38H16C12.691 38 10 35.309 10 32V16C10 12.691 12.691 10 16 10Z' fill='%23FFD700' stroke='%23000000' stroke-width='1'/%3E%3Cpath d='M18 20L24 26L30 20' fill='none' stroke='%23000000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 24 24, pointer !important;
}

/* =====================================
   צבעי סמן - כחול
   ===================================== */
html.ttfc-cursor-blue,
html.ttfc-cursor-blue * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M8 8L8 40L18 30L26 42L32 38L24 26L38 26L8 8Z' fill='%230066CC' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E") 4 4, auto !important;
}

html.ttfc-cursor-blue a,
html.ttfc-cursor-blue button,
html.ttfc-cursor-blue [role="button"],
html.ttfc-cursor-blue input[type="submit"],
html.ttfc-cursor-blue input[type="button"],
html.ttfc-cursor-blue a *,
html.ttfc-cursor-blue button * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M16 6C10.477 6 6 10.477 6 16V32C6 37.523 10.477 42 16 42H32C37.523 42 42 37.523 42 32V16C42 10.477 37.523 6 32 6H16ZM16 10H32C35.309 10 38 12.691 38 16V32C38 35.309 35.309 38 32 38H16C12.691 38 10 35.309 10 32V16C10 12.691 12.691 10 16 10Z' fill='%230066CC' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M18 20L24 26L30 20' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 24 24, pointer !important;
}

/* =====================================
   צבעי סמן - אדום
   ===================================== */
html.ttfc-cursor-red,
html.ttfc-cursor-red * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M8 8L8 40L18 30L26 42L32 38L24 26L38 26L8 8Z' fill='%23CC0000' stroke='%23FFFFFF' stroke-width='2'/%3E%3C/svg%3E") 4 4, auto !important;
}

html.ttfc-cursor-red a,
html.ttfc-cursor-red button,
html.ttfc-cursor-red [role="button"],
html.ttfc-cursor-red input[type="submit"],
html.ttfc-cursor-red input[type="button"],
html.ttfc-cursor-red a *,
html.ttfc-cursor-red button * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cpath d='M16 6C10.477 6 6 10.477 6 16V32C6 37.523 10.477 42 16 42H32C37.523 42 42 37.523 42 32V16C42 10.477 37.523 6 32 6H16ZM16 10H32C35.309 10 38 12.691 38 16V32C38 35.309 35.309 38 32 38H16C12.691 38 10 35.309 10 32V16C10 12.691 12.691 10 16 10Z' fill='%23CC0000' stroke='%23FFFFFF' stroke-width='1'/%3E%3Cpath d='M18 20L24 26L30 20' fill='none' stroke='%23FFFFFF' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 24 24, pointer !important;
}
