/* Mini CSS de la page de test — sera remplacé par css_new.css au moment
   de reconstruire la vraie home. */

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #222;
    background: #fafafa;
    line-height: 1.5;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-header .logo {
    font-weight: 700;
    text-decoration: none;
    color: #b35;
}
.site-header nav a {
    margin-left: 1rem;
    color: #444;
    text-decoration: none;
}
main { padding: 2rem 0; }
.site-footer {
    border-top: 1px solid #e5e5e5;
    margin-top: 3rem;
    padding: 1.5rem 0;
    color: #888;
    font-size: .9rem;
}
table.countries {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-top: 1rem;
}
table.countries th,
table.countries td {
    padding: .55rem .75rem;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: .92rem;
}
table.countries th {
    background: #f4f4f4;
    font-weight: 600;
}
code {
    background: #f0f0f0;
    padding: 1px 4px;
    border-radius: 3px;
    font-size: .85em;
}
