#cookie-consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.cookie-consent-card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
  font-family: inherit;
}

.cookie-consent-title {
  margin: 0 0 10px 0;
}

.cookie-consent-copy {
  margin: 0 0 14px 0;
  line-height: 1.4;
}

#cookie-consent-settings {
  margin-bottom: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
}

.cookie-consent-option {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-consent-option + .cookie-consent-option {
  margin-top: 8px;
}

.cookie-consent-option--required {
  opacity: .8;
}

.cookie-consent-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.cookie-consent-btn--accept {
  border: 0;
  background: #1f7a1f;
  color: #fff;
}

.cookie-consent-btn--ghost {
  border: 1px solid #444;
  background: #fff;
}