.consent-wrap {
  position: relative;
  width: 100%;
  display: block;
}
.consent-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #f6f7f9;
  border: 1px solid #d0d5dd;
  text-align: center;
  padding: 1rem;
}
.consent-placeholder .cp-title {
  font-weight: 600;
}
.consent-placeholder .cp-desc {
  opacity: 0.85;
}
.consent-placeholder .cp-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.consent-placeholder .cp-btn {
  appearance: none;
  border: 1px solid #3342a0;
  background: #3342a0;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
.consent-placeholder .cp-btn.cp-ghost {
  background: #fff;
  color: #3342a0;
}
#consent-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #3342a0;
  color: #fff;
  padding: 16px;
  z-index: 9999;
  display: none;
}
#consent-banner button {
  color: black;
}
#consent-toggle {
  position: fixed;
  left: 16px;
  bottom: 40px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: #3342a0;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  cursor: pointer;
}
