/* Tabellenlayout – nah am Originalstimmzettel */

#hessen-ballot-root {
  max-width: 1200px;
  margin: 20px auto;
  font-family: "Arial", sans-serif;
  color: #000;
  background: #fff;
}

/* Tabellenraster */
.ballot-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 20px;
  font-size: 10pt;
}

.ballot-table th, .ballot-table td {
  border: 1px solid #000;
  padding: 2px 4px;
}

.ballot-table th {
  font-weight: bold;
  background: #f9f9f9;
}

.ballot-table .list-head {
  font-size: 11pt;
  background: #eee;
}

.cand-id {
  width: 30px;
  text-align: center;
  font-weight: bold;
}

.cand-name {
  cursor: pointer;
}

.cand-name.struck {
  text-decoration: line-through;
  color: #c00;
}

.cand-boxes {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.cand-box {
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  text-align: center;
  line-height: 16px;
  font-size: 12px;
  cursor: pointer;
}
.cand-box.checked { color: #000; }
.cand-box.auto { color: #777; }

/* Hinweis */
.hint {
  font-size: 9pt;
  margin-top: 5px;
  color: #555;
}
