/* Minimal styling for the consent banner. Adjust colors to match your brand. */
.consent-banner {
  position: fixed;
  inset: auto 0 0 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 1rem;
  z-index: 2147483647;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
.consent-banner[hidden] {
  display: none !important;
}
.consent-banner__inner {
  max-width: 960px;
  margin: 0 auto;
}
.consent-banner__title {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}
.consent-banner__description {
  margin: 0 0 1rem;
  line-height: 1.4;
}
.consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.consent-banner__actions--secondary {
  margin-top: 0.75rem;
}
.consent-banner__button {
  appearance: none;
  border: 1px solid #f0f0f0;
  background: transparent;
  color: inherit;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
.consent-banner__button:focus {
  outline: 3px solid #f9d342;
  outline-offset: 2px;
}
.consent-banner__button--primary {
  background: #f9d342;
  color: #1a1a1a;
  border-color: #f9d342;
  font-weight: 600;
}
.consent-banner__customize {
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 1rem;
}
.consent-banner__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.consent-banner__legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.consent-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 599px) {
  .consent-banner {
    padding: 1rem 0.75rem;
  }
  .consent-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .consent-banner__button {
    width: 100%;
    text-align: center;
  }
}
