#consent-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 100;
  padding: 1rem;
  pointer-events: none;
}

#consent-banner[hidden] {
  display: none;
}

#consent-banner .consent-panel {
  pointer-events: auto;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #bae8fc;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(12, 74, 110, 0.15);
}

#consent-banner p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #475569;
}

#consent-banner .consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

#consent-banner button {
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}

#consent-banner .consent-accept {
  background: #0c4a6e;
  color: #fff;
  border: 2px solid #052e4a;
}

#consent-banner .consent-accept:hover {
  background: #075985;
}

#consent-banner .consent-reject {
  background: #fff;
  color: #475569;
  border: 2px solid #e2e8f0;
}

#consent-banner .consent-reject:hover {
  background: #f8fafc;
}

#consent-banner a {
  color: #0284c7;
  text-decoration: underline;
}
