/* Estilos específicos da demo do Perceptron (complementa ../shared/demo.css). */

.truth-table {
  border-collapse: collapse;
  width: 100%;
  font-size: .88rem;
  color: var(--fg);
}
.truth-table th,
.truth-table td {
  border: 1px solid var(--line);
  padding: .35rem .55rem;
  text-align: center;
}
.truth-table th {
  color: var(--comment);
  font-weight: 600;
  background: var(--card);
}
.truth-table .formula-cell {
  font-family: "STIX Two Math", "Cambria Math", Georgia, serif;
}
.truth-table td.ok { color: var(--green); font-weight: 700; }
.truth-table td.bad { color: var(--red); font-weight: 700; }
.truth-table td.pos { color: var(--cyan); font-weight: 600; }
.truth-table td.neg { color: var(--orange); font-weight: 600; }
