/* Optiuni reconstruite de sondaj-premium.js */
.fhd-poll-premium-v3,
.fhd-poll-premium-v3 * {
  box-sizing: border-box !important;
}

.fhd-poll-premium-v3 .fhd-account-card-content {
  padding: 13px !important;
}

.pollQue {
  padding: 10px !important;
  margin-bottom: 10px !important;
}

.fhd-vote-options {
  display: grid;
  gap: 7px;
  width: 100%;
}

.fhd-vote-choice {
  --choice-color: #ffbd45;
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 39px;
  padding: 8px 10px !important;
  margin: 0 !important;
  overflow: hidden;
  color: #dfe1db !important;
  cursor: pointer;
  background: linear-gradient(90deg, color-mix(in srgb, var(--choice-color) 8%, transparent), rgba(255,255,255,.018));
  border: 1px solid rgba(255,255,255,.075);
  border-left: 3px solid var(--choice-color);
  border-radius: 9px;
  transition: .18s ease;
}

.fhd-vote-choice:nth-child(4n+2) { --choice-color: #55baff; }
.fhd-vote-choice:nth-child(4n+3) { --choice-color: #64db82; }
.fhd-vote-choice:nth-child(4n) { --choice-color: #bd83ff; }

.fhd-vote-choice:hover {
  color: #fff !important;
  border-color: color-mix(in srgb, var(--choice-color) 42%, transparent);
  transform: translateX(2px);
}

.fhd-vote-choice input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.fhd-choice-dot {
  position: relative;
  display: grid;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  place-items: center;
  background: rgba(255,255,255,.055);
  border: 2px solid color-mix(in srgb, var(--choice-color) 65%, #fff);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #10110e;
}

.fhd-vote-choice input:checked + .fhd-choice-dot {
  background: var(--choice-color);
  box-shadow: inset 0 0 0 4px #10110e, 0 0 12px color-mix(in srgb, var(--choice-color) 42%, transparent);
}

.fhd-choice-text {
  min-width: 0;
  font-size: 9px;
  font-weight: 750;
  line-height: 1.35;
}

.fhd-poll-submit {
  display: block !important;
  width: 100% !important;
  min-height: 39px !important;
  padding: 9px 12px !important;
  margin: 10px 0 0 !important;
  color: #17150d !important;
  font-size: 9px !important;
  font-weight: 950 !important;
  cursor: pointer;
  background: linear-gradient(135deg, #ffe993, #ffc34a, #f39a2e) !important;
  border: 1px solid rgba(255,255,255,.34) !important;
  border-radius: 9px !important;
  box-shadow: 0 9px 19px rgba(244,155,44,.20) !important;
}

@media (prefers-reduced-motion: reduce) {
  .fhd-vote-choice { transition: none !important; }
}
