.poll-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.9rem;
  margin-bottom: 1.5rem;
}

.poll-id {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-bottom: 0.4rem;
}

.poll-card h3 {
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

button {
  font-family: inherit;
  padding: 0.8rem 1.4rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 1rem;
  transition: background 0.15s ease, opacity 0.15s ease;
}

button:hover {
  background: rgba(255, 255, 255, 0.25);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

button.secondary {
  background: rgba(255, 255, 255, 0.25);
}

.voted-text {
  margin-bottom: 0.8rem;
  opacity: 0.9;
}

.results {
  margin-top: 1rem;
  font-weight: 600;
}

.results div {
  margin-bottom: 0.3rem;
}
