#summaryTable {
    width: 800px; /* רוחב הטבלה */
    border-collapse: collapse;
    margin: 20px auto; /* מרכז את הטבלה */
    text-align: center;
}

#summaryTable td, #summaryTable th {
    border: 1px solid black;
    padding: 5px;
    text-align: center;
    font-weight: bold; /* טקסט מודגש */
    font-size: 11px; /* גודל טקסט 11 פיקסלים */
}

/* הגדרת רוחב העמודות */
#summaryTable td:first-child {
    width: 300px; /* רוחב העמודה הראשונה */
}

#summaryTable td:nth-child(2) {
    width: 150px; /* רוחב העמודה השנייה */
}

#summaryTable td:nth-child(3) {
    width: 150px; /* רוחב העמודה השלישית */
}

#summaryTable td:nth-child(4) {
    width: 200px; /* רוחב העמודה הרביעית */
    background-color: #E6E6FA; /* צבע סגול בהיר */
}

/* אופציונלי: סגנון לשורת כותרת */
#summaryTable th {
    background-color: #f2f2f2; /* רקע בהיר לשורת הכותרת */
}
#tableNotes {
    text-align: right; /* הצמדת טקסט ההערות לימין */
    margin-bottom: 10px;
}
footer {
    text-align: center; /* יישור מרכזי של התוכן */
    margin-top: 20px; /* רווח מעל */
    padding: 10px 0; /* רווח פנימי של 10 פיקסלים למעלה ולמטה */
    background-color: #f0f0f0; /* צבע רקע בהיר */
    border-top: 1px solid #ccc; /* קו עליון */
}

.PS-ENG {
    font-size: 14px; /* גודל פונט */
    margin: 5px 0; /* רווח בין השורות */
}
