.voter-list {
  max-height: 46vh;
  overflow: auto;
  display: grid;
  gap: 8px;
  margin: 10px 0;
}
.voter-option {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #171717;
  color: var(--text);
  padding: 13px 14px;
}
.voter-option small { color: var(--muted); }
.voter-option.selected {
  border-color: var(--gold2);
  background: #292218;
  box-shadow: 0 0 0 3px rgba(225,186,103,.1);
}
