.section-title {
  margin: 0 0 14px;
  font-size: 16px;
}

.upload-list {
  display: grid;
  gap: 10px;
}

.usage-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

@media (max-width: 1100px) {
  .usage-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.upload-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px dashed #b8c7dc;
  border-radius: 8px;
  background: #fafcff;
}

.vote-options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.vote-btn {
  min-height: 48px;
  border-radius: 8px;
  font-weight: 750;
}

.result-bars {
  display: grid;
  gap: 12px;
}

.bar-line {
  display: grid;
  grid-template-columns: 78px 1fr 108px;
  gap: 10px;
  align-items: center;
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  background: #edf2f8;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: var(--color-primary);
}

.bar-fill.success {
  background: var(--color-success);
}

.bar-fill.warning {
  background: var(--color-warning);
}

.print-sheet {
  background: #fff;
  color: #111827;
}

.print-sheet h2 {
  text-align: center;
}
