/* Mise en page locale à index.php.
   Déplacer dans le global ce qui devient commun au fil des refactors. */

#main { display: grid; place-items: center; }

.lecteur-container {
  max-width: 1200px;
  width: 98%;
  margin: 0 auto 24px;
  display: inline-block;
  background-color: #1F1F1F !important;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
  padding: 20px;
  color: #fff;
}
.lecteur-container--light {
  background-color: #fff !important;
  box-shadow: 0 4px 12px rgba(0, 100, 214, 0.83);
  color: #000;
}
.section-title {
  text-align: center;
  margin: 0 0 12px 0;
}

/* Table-like layout */
.Table { display: table; width: 100%; }
.Heading { display: table-row; font-weight: 700; text-align: center; }
.Row { display: table-row; }
.Cell {
  display: table-cell;
  text-align: left;
  border: 0;
  padding: 6px 8px;
  width: 50%;
}
.Cell ul { margin: 6px 0 12px; padding-left: 18px; }