/* Scoped styles for the TCF feedback popup */
#tcf-feedback-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#tcf-feedback-popup {
  background: #fff;
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

#tcf-feedback-popup .tcf-feedback-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px 20px;
}

#tcf-feedback-popup h3#tcf-feedback-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

#tcf-feedback-popup .tcf-feedback-close {
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: #6B7280;
  cursor: pointer;
}
#tcf-feedback-popup .tcf-feedback-close:hover {
  color: #374151;
}

#tcf-feedback-popup .tcf-feedback-body {
  padding: 4px 20px 16px 20px;
  color: #374151;
  font-size: 14px;
}

#tcf-feedback-popup .tcf-feedback-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 16px 16px 16px;
}

#tcf-feedback-popup .tcf-feedback-btn {
  appearance: none;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

#tcf-feedback-popup .tcf-feedback-btn-primary {
  background: #2563EB;
  color: #fff;
  border: 1px solid #1D4ED8;
}
#tcf-feedback-popup .tcf-feedback-btn-primary:hover {
  background: #1D4ED8;
}

#tcf-feedback-popup .tcf-feedback-btn-secondary {
  background: #F3F4F6;
  color: #111827;
  border: 1px solid #E5E7EB;
}
#tcf-feedback-popup .tcf-feedback-btn-secondary:hover {
  background: #E5E7EB;
}
