
article .todo:before {
  position: absolute;
  left: -40px;
  color: #fff;
  width: 40px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  font-size: 12px;
  content: "TODO";
  background-color: rgb(216, 99, 99);
}

article .todo {
  background: rgb(228, 194, 194);
  border-left: 4px solid rgb(218, 137, 137);
  padding: 0.0015rem 1.5rem;
  position: relative;
  min-height: 3em;
  margin: 0.75rem 0;
  border-left-color: rgb(216, 99, 99);
}

article .todo:hover {
  background: rgb(235, 148, 148);
}

/* article .todo {
  display: none;
} */

.ggb-knopf {
  background-color: #c0c0c0;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  font-weight: 600;
  font-family: system-ui;
  padding-left: 3px;
  padding-right: 3px;
}

.ggb-eingabe {
  background-color: white;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  font-weight: 600;
  font-family: system-ui;
  padding-left: 3px;
  padding-right: 3px;
}

/* Falls das zu einem globalen Stil wird, kann man das mit SASS noch schöner machen. */
.ggb-kontrollkaestchen-aktiv, .ggb-kontrollkaestchen-inaktiv {
  font-family: system-ui;
  padding-left: 3px;
  padding: 3px;
  border-radius: 3px;
  background-color: #e6e6e6;
}

/* Das Kästchen ist nur zufällig ungefähr quadratisch.
Display-Modi, die die Höhe und Breite setzbar machen, machen Probleme beim vertikalen Ausrichten an der Baseline. */
.ggb-kontrollkaestchen-aktiv:before, .ggb-kontrollkaestchen-inaktiv:before {
  padding-left: 2pt;
  padding-right: 2pt;
  margin-right: 4px;
  border-radius: 10%;
  font-size: smaller;
}

.ggb-kontrollkaestchen-aktiv:before {
  content: "✓";
  border: 1px solid purple;
  background-color: purple;
  color: white;
}

/* unsichtbarer Inhalt als Provisorium, um Box-Größe gleich zu halten */
.ggb-kontrollkaestchen-inaktiv:before {
  content: "✓";
  border: 1px solid gray;
  background-color: white;
  color: white;
}

.padding-schmale-breite td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  min-width: 3rem;
}

.bildzeile {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
  gap: 5px;
  flex-wrap: wrap;
  background-color: whitesmoke;
  margin-top: 5px;
  margin-bottom: 5px;
}
.bildzeile img {
  display: inline;
}

.bildknopf {
  margin: 2px;
  padding: 3px;
  padding-left: 10px;
  padding-right: 10px;
}