/* article-style.css: Core styles for German medical articles (E-E-A-T Konform) - FINAL FIX */

/* General Article Container & Readability Settings */
body.article-body {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #F8F9FA; 
}

article {
    padding: 30px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(15, 32, 39, 0.1); 
}

/* Headings & Text */
h1 { color: #0F2027; font-size: 2.5rem; border-bottom: 2px solid #00A896; padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
h2 { color: #0F2027; font-size: 1.8rem; margin-top: 2rem; }
h3 { color: #00A896; font-size: 1.3rem; margin-top: 1.5rem; }
p { margin-bottom: 1em; }


/* Tables (Wichtig für wissenschaftliche Daten und Responsivität) */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 0.9em;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: block; 
    overflow-x: auto; 
    white-space: nowrap;
}

thead {
    /* Hintergrund passend zur Primary Color */
    background-color: #0F2027; 
    /* ✅ FIX: تأكيد أن لون النص أبيض لضمان التباين العالي ✅ */
    color: white; 
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    white-space: normal; 
    min-width: 100px;
}

tr:nth-child(even) {
    background-color: #f7f7f7;
}
/* ... (بقية الملف) ... */
