.poll-modal {
  z-index: 4020;
}

.poll-card {
  width: min(560px, 92vw);
}

.poll-head {
  gap: 12px;
}

.poll-progress {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.poll-description {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}

.poll-body {
  display: grid;
  gap: 10px;
}

.poll-question-text {
  font-size: 16px;
  font-weight: 600;
}

.poll-question-help {
  font-size: 13px;
  color: var(--muted);
}

.poll-inputs {
  display: grid;
  gap: 10px;
}

.poll-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid var(--chip-border-weak, rgba(255, 255, 255, 0.12));
  background: var(--surface-3, rgba(8, 12, 18, 0.7));
  cursor: pointer;
}

.poll-choice input {
  margin: 0;
}

.poll-textarea {
  width: 100%;
  min-height: 110px;
  border-radius: 12px;
  border: 1px solid var(--chip-border, rgba(255, 255, 255, 0.16));
  background: var(--surface-3, rgba(8, 12, 18, 0.7));
  color: var(--text);
  padding: 10px 12px;
  font-size: 14px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.poll-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.poll-actions .info-button {
  border: none;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent), var(--accent-bright, #9af7e0));
  color: #062018;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 10px 25px rgba(106, 230, 201, 0.3);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.poll-actions .info-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(106, 230, 201, 0.35);
}

.poll-actions .info-button:active {
  transform: translateY(1px);
  box-shadow: none;
}

.poll-status {
  min-height: 36px;
  display: flex;
  align-items: center;
}

.poll-status.is-empty {
  opacity: 0;
  pointer-events: none;
}

.poll-status.info-status {
  border-radius: 12px;
  padding: 6px 10px;
  font-size: 13px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 14, 20, 0.7);
}

.poll-status.info-status--success {
  border-color: rgba(106, 230, 201, 0.5);
  background: rgba(106, 230, 201, 0.12);
}

.poll-status.info-status--error {
  border-color: rgba(255, 107, 107, 0.6);
  background: rgba(255, 107, 107, 0.12);
}
