/***
 * Copyright (C) 2025 Kisa Hölzl <kisa@kisatan.org>
 * This file is part of BS-exercise-generator.
 *
 * BS-exercise-generator is non-violent software: you can use, redistribute,
 * and/or modify it under the terms of the CNPLv7+ as found in the LICENSE
 * file in the source code root directory or at <https://git.pixie.town/thufie/npl-builder>.
 *
 * BS-exercise-generator comes with ABSOLUTELY NO WARRANTY, to the extent
 * permitted by applicable law.  See the CNPL for details.
 **/
#content {
  min-height: 85vh;
}
footer {
  min-height: fit-content;
  max-height: 5vh;
}
.output.solution-hidden {
  td.solution,
  .scuffed-td.solution span {
    visibility: hidden;
  }
}
table {
  tr:nth-of-type(even),
  .scuffed-tr:nth-of-type(even) {
    background-color: lightgray;
  }
}
.scuffed-tr {
  display: table-row;
}
.scuffed-td {
  display: table-cell;
}
.scuffed-td,
td,
th {
  width: 15%;
  padding: 5px;
}
@media print {
  button,
  footer {
    display: none;
  }
  table {
    border-collapse: collapse;
  }
  td,
  th,
  .scuffed-td {
    border: 1px solid black;
  }
}
