.res-row {
  display: grid;
  grid-template-columns: 1fr 140px 110px 90px 80px;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  align-items: center;
  cursor: pointer;
  transition: background 0.1s;
}
.res-row:hover { background: var(--pale-gold); }
.res-row.row-head {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--slate);
  background: #FAFAFA;
  font-weight: 500;
  cursor: default;
}
.res-row.row-head:hover { background: #FAFAFA; }
.res-title { font-weight: 500; color: var(--navy); }
.res-meta { color: var(--slate-soft); font-size: 11px; }
.status-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 500;
}
.status-draft { background: #F1F5F9; color: var(--slate); }
.status-open { background: var(--pale-gold); color: var(--charcoal); border: 1px solid var(--gold-soft); }
.status-closed { background: #E5E7EB; color: var(--slate); }
.outcome-passed { color: #065F46; font-weight: 500; }
.outcome-failed { color: #991B1B; font-weight: 500; }
.outcome-withdrawn { color: var(--slate-soft); }

.detail-section { margin: 16px 0; }
.detail-section h4 { font-family: var(--serif); font-size: 14px; color: var(--navy); margin: 0 0 6px; }
.detail-text { white-space: pre-wrap; background: #FAFAFA; padding: 10px 12px; border-left: 3px solid var(--gold); font-family: Georgia, serif; font-size: 13px; line-height: 1.5; }

.tally-bar {
  display: flex;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
  height: 24px;
  margin: 8px 0;
}
.tally-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: white;
  padding: 0 8px;
}
.tally-for { background: #16A34A; }
.tally-against { background: #DC2626; }
.tally-abstain { background: #94A3B8; }

.vote-cast-form { background: var(--pale-gold); border: 1px solid var(--gold-soft); border-radius: 6px; padding: 14px; margin-top: 12px; }
.vote-options { display: flex; gap: 8px; margin: 8px 0; }
.vote-options label {
  flex: 1;
  padding: 10px 12px;
  border: 2px solid var(--line);
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s;
}
.vote-options label.selected { border-color: var(--gold); background: white; }
.vote-options input[type=radio] { display: none; }
.vote-confirm-warn {
  background: #FEF3C7;
  border: 1px solid #F59E0B;
  color: #78350F;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin: 8px 0;
}
.tally-row { display: flex; justify-content: space-between; font-size: 12px; color: var(--slate); margin: 4px 0; }
