/* 1. הגדרות בסיס - דף נקי וקריא */
body {
    background-color: #ffffff !important;
    margin: 0 auto !important;
    padding: 20px !important;
    max-width: 900px;
    direction: rtl;
    font-family: Arial, sans-serif !important;
}

/* 2. טיפול בטבלאות - להפוך אותן לשקיפות וגמישות */
table, tbody, tr, td {
    display: block !important; /* הופך את הטבלה למסמך זורם */
    width: 100% !important;
    height: auto !important;
    background-color: transparent !important;
    border: none !important;
}

/* 3. הצגת הטקסט של המאמר */
.MsoNormal, h1, p {
    display: block !important;
    font-weight: normal !important;
    font-size: 1.2em !important;
    line-height: 1.7 !important;
    color: #333 !important;
    text-align: right !important;
    margin-bottom: 15px !important;
}

/* 4. הסתרת התפריטים הישנים (מכל הסוגים) */
/* מסתיר תאים עם צבעי רקע של תפריטים (כחול, אפור, ירקרק) */
td[bgcolor="#0066CC"], 
td[bgcolor="#F3F4F2"], 
td[bgcolor="#E4E6E3"],
td[bgcolor="#C0C0C0"],
td[width="83"], 
td[width="104"] {
    display: none !important;
}

/* 5. הסתרת קישורי ניווט ישנים לפי מילות מפתח בכתובת */
a[href*="mamrimmenu"],
a[href*="contact"],
a[href*="alhamechon"],
a[href*="theforum"],
a[href*="prsumimmenu"] {
    display: none !important;
}

/* 6. הסתרת שורות שלמות שמכילות קישורים מיותרים */
tr:has(a[href*="menu"]),
tr:has(a[href*="contact"]) {
    display: none !important;
}