:root {
    --color-text: #1a1a1a;
    --color-text-muted: #333;
    --color-green: #6aad3a;
    --color-green-dark: #5a9430;
    --color-green-soft: rgba(106, 173, 58, 0.85);
    --color-white: #ffffff;
    --color-white-soft: rgba(255, 255, 255, 0.88);
    --color-nav-bar: rgba(235, 235, 235, 0.55);
    --radius: 8px;
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.12);
    --font: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    color: var(--color-text);
    background-color: #c8d5b8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.6;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Tables (contenu TinyMCE / articles) */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    background: var(--color-white);
    border: 1px solid #c5cfc0;
}

table th,
table td {
    border: 1px solid #c5cfc0;
    padding: 0.65rem 0.85rem;
    vertical-align: top;
    text-align: left;
}

table th {
    background: rgba(106, 173, 58, 0.18);
    font-weight: 700;
    color: var(--color-text);
}

/* Première ligne = même traitement que thead */
table tr:first-child th,
table tr:first-child td {
    background: rgba(106, 173, 58, 0.18);
    font-weight: 700;
}

table tbody tr:nth-child(even) {
    background: rgba(106, 173, 58, 0.08);
}

table tbody tr:nth-child(odd) {
    background: var(--color-white);
}

table caption {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: left;
}
