/* article-style.css: Core styles for the static medical articles to ensure readability and responsiveness */

/* General Article Container */
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: #F8FAFB; /* Match the portfolio surface color */
}

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

/* Headings & Text */
h1 {
    color: #19376D; /* Primary Color */
    font-size: 2.5rem;
    border-bottom: 2px solid #00A591; /* Subtle divider (Accent Color) */
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    color: #19376D;
    font-size: 1.8rem;
    margin-top: 2rem;
}

h3 {
    color: #00A591; /* Accent Color */
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

/* Tables (Crucial for Scientific Content) */
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 {
    background-color: #19376D;
    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;
}

/* ... (بقية الملف) ... */
