/* Une page lue au téléphone, souvent dehors : gros texte, fort contraste, rien d'autre. Les
   couleurs ne viennent pas des jetons de l'écran — la page vit hors du produit, et ne charge rien
   qu'elle n'apporte. */
:root {
  color-scheme: light dark;
  --fond: #ffffff;
  --encre: #111111;
  --contour: #555555;
}

@media (prefers-color-scheme: dark) {
  :root {
    --fond: #111111;
    --encre: #f2f2f2;
    --contour: #aaaaaa;
  }
}

body {
  background: var(--fond);
  color: var(--encre);
  font: 1.125rem/1.5 system-ui, sans-serif;
  margin: 0;
}

main {
  margin: 0 auto;
  max-width: 36rem;
  padding: 1rem;
}

li {
  margin-bottom: 1.25rem;
}

.valeur {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

input {
  border: 2px solid var(--contour);
  border-radius: 0.375rem;
  flex: 1;
  font: 1rem ui-monospace, monospace;
  min-width: 0;
  padding: 0.625rem;
}

button {
  border: 2px solid var(--encre);
  border-radius: 0.375rem;
  font: inherit;
  min-height: 3rem;
  padding: 0 1rem;
}

.avis {
  border-left: 4px solid var(--encre);
  padding-left: 0.75rem;
}
