/* nouacon.css — stylesheet for nouaCon77.html
   Replaces inline STYLE="margin-bottom: 0cm" and FONT FACE="Arial, sans-serif"
   attributes on every <P> element.
*/

/* ── Font stack: modern sans-serif, no serifs
   Segoe UI      – Windows Vista+
   system-ui     – macOS / iOS native UI font (San Francisco)
   Roboto        – Android / Chrome OS
   Helvetica Neue / Helvetica / Arial – broad fallbacks
   sans-serif    – ultimate fallback
*/
:root {
    --body-font: Arial, sans-serif;
}

/* ── Page layout (kept from the original inline @page rule) ── */
@page {
    size: 21.59cm 27.94cm;   /* letter-ish: width × height */
}

/* ── Default for every paragraph ── */
p {
    font-family: var(--body-font);
    margin-bottom: 0;          /* replaces margin-bottom: 0cm */
}

/* ── Centred paragraphs (title / heading rows) ── */
p.center,
p[align="center"] {            /* works whether you use a class or keep the attribute */
    text-align: center;
}

/* ── Paragraphs inside ordered lists ── */
ol > p {
    font-family: var(--body-font);
    margin-bottom: 0;
}
