/* ==========================================================================
   GDC CSS MODULE 05: CRM, SUGGESTION BOX & POLLING WIDGETS
   File: gdc-css-05-crm-polling.css
   ========================================================================== */

#gdc-proxy-form-container {
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.20) 0%, rgba(15, 23, 42, 0.65) 100%) !important;
  backdrop-filter: blur(8px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(8px) saturate(140%) !important;
  border: 2px solid #38BDF8 !important;
  border-radius: 12px !important;
  padding: 25px !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(56, 189, 248, 0.25) !important;
}

.gdc-poll-card {
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.15) 0%, rgba(15, 23, 42, 0.40) 100%) !important;
  border: 1.5px solid rgba(56, 189, 248, 0.45) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  margin-top: 20px !important;
}

.gdc-poll-options {
  display: flex !important;
  gap: 15px !important;
  margin-top: 15px !important;
}

.gdc-vote-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.gdc-vote-up {
  background: rgba(16, 185, 129, 0.15) !important;
  border: 1px solid #10B981 !important;
  color: #10B981 !important;
}

.gdc-vote-up:hover {
  background: rgba(16, 185, 129, 0.35) !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4) !important;
}

.gdc-vote-down {
  background: rgba(239, 68, 68, 0.15) !important;
  border: 1px solid #EF4444 !important;
  color: #EF4444 !important;
}

.gdc-vote-down:hover {
  background: rgba(239, 68, 68, 0.35) !important;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4) !important;
}