/* Page de la famille « passwords » : un simple index, autonome. */

:root {
  --fond: #0a0c0d;
  --texte: #d6dde0;
  --discret: #4a5459;
  --attenue: #7d898f;
  --accent: #3ddc84;
  --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas,
          "Liberation Mono", "DejaVu Sans Mono", monospace;
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--fond);
  color: var(--texte);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}

a { color: var(--accent); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }

.fil { color: var(--attenue); font-size: 0.85rem; }

h1 {
  margin: 12px 0 20px;
  font-size: 1.4rem;
  font-weight: 500;
}

/* La même arborescence que l'accueil : └ pour le dernier outil, ├ et │
   pour les autres, dessinés en bordures. */
.arbre {
  list-style: none;
  margin: 0 0 0 0.45em;
  padding: 0;
}

.arbre li {
  position: relative;
  padding: 4px 0 4px 1.6em;
}

.arbre li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.1em;
  height: 1.05em;
  border-left: 1px solid var(--discret);
  border-bottom: 1px solid var(--discret);
}

.arbre li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  bottom: 0;
  border-left: 1px solid var(--discret);
}

.arbre li:last-child::after { display: none; }

.arbre .desc {
  display: block;
  color: var(--attenue);
  font-size: 0.85rem;
}
