        /* Mobile-first */
        body {
            font-family: system-ui, sans-serif;
            margin: 0;
            padding: 2rem 1rem;
            text-align: center;
        }

        header.entete {
            width: 100%;
            max-width: 480px;
            margin-bottom: 2rem;
        }

        .page-defaut {
            width: 100%;
            max-width: 480px;
        }

        h1 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        form {
            margin: auto;
            padding: 2rem 1rem;
            width: 100%;
            max-width: 640px;
            margin-bottom: 1.5rem;
        }

        input {
            width: 100%;
            padding: 0.8rem;
            font-size: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-bottom: 0.8rem;
            box-sizing: border-box;
        }

        button {
            width: 100%;
            padding: 0.8rem;
            font-size: 1rem;
            border: none;
            border-radius: 6px;
            background: #333;
            color: #fff;
            cursor: pointer;
        }

        button:hover {
            background: #000;
        }

        small.info {
            display: block;
            margin-top: 2rem;
            font-size: 0.85rem;
            opacity: 0.6;
        }

        /* boutons */
        .bouton {
            margin: 0.25rem;
            padding: 1rem 1.5rem;
            border: 1px solid var(--trait1);
            border-radius: 1.5rem;
            background-color: gray;
            color: white;
            min-width: 35px;
            min-height: 1rem;
            /* overflow sur hauteur */
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s;
            display: inline-block;
        }

        .bouton:hover {
            background-color: darkgray;
            color: white;
        }

        .boutonApp {
            background-color: #E07A2A;
            color: white;
        }

        .boutonPetit {
            padding: 0.25rem 1rem;
            border-radius: 0.5rem;
        }

        .boutonAlerte {
            background: red;
            color: white;
        }

        /* fil d'Ariane */
        .filsAriane {
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .filsAriane ol {
            margin: 1rem auto;
            padding: 1rem;
            display: flex;
            flex-wrap: wrap;
            list-style: none;
        }

        .filsAriane ol li {
            display: flex;
            align-items: center;
        }

        .filsAriane ol li+li::before {
            content: "›";
            margin: 0 0.5em;
            color: #888;
        }

        .filsAriane ol li[aria-current="page"] {
            font-weight: bold;
            color: var(--texteAccent);
        }

        table.tableFluide {
            width: 100%;
            border-collapse: collapse;
        }

        .tableFluide,
        .tableFluide thead,
        .tableFluide tbody,
        .tableFluide th,
        .tableFluide td,
        .tableFluide tr {
            display: block;
        }

        .tableFluide thead {
            display: none;
        }

        .tableFluide tr {
            margin-bottom: 15px;
            padding: 10px;
            border: 1px solid #888;
        }

        .tableFluide td {
            display: flex;
            justify-content: space-between;
            padding: 6px;
            border: none;
        }

        .tableFluide td::before {
            content: attr(data-label);
            font-weight: bold;
            margin-right: 1rem;
        }

        .debug {
            text-align: left;
            max-width: 98vw;
        }

        /* Desktop */
        @media (min-width: 1024px) {
            body {
                margin: auto;
                padding: 4rem 1rem;
            }

            h1 {
                font-size: 2rem;
            }

            p {
                font-size: 1.1rem;
            }

            input,
            button {
                font-size: 1.1rem;
                padding: 1rem;
            }

            .page-defaut {
                max-width: 420px;
            }

            /* table fluide */
            .tableFluide {
                display: table;
            }

            .tableFluide thead {
                display: table-header-group;
            }

            .tableFluide tbody {
                display: table-row-group;
            }

            .tableFluide tr {
                display: table-row;
                margin: 0;
                padding: 0;
                border: none;
            }

            .tableFluide th,
            .tableFluide td {
                display: table-cell;
                padding: 8px;
                text-align: left;
                max-width: 34rem;
            }

            .tableFluide th {
                border: 1px solid #888;
            }

            .tableFluide td::before {
                content: none;
            }
        }