#bcn-root {
  position: fixed;
  left: 20px;
  right: 20px;
  z-index: 999999;
  font-family: inherit;
  display: block;
}
#bcn-root.bcn-bottom { bottom: 20px; }
#bcn-root.bcn-top { top: 20px; }
.bcn-banner {
  background: var(--bcn-bg, #111827);
  color: var(--bcn-text, #ffffff);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.24);
  padding: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.bcn-main {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.bcn-copy { flex: 1 1 auto; }
.bcn-title {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}
.bcn-message {
  line-height: 1.5;
  font-size: 14px;
}
.bcn-policy {
  display: inline-block;
  margin-top: 10px;
  color: var(--bcn-text, #ffffff);
  text-decoration: underline;
}
.bcn-actions, .bcn-pref-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bcn-btn, .bcn-manage-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  font: inherit;
}
.bcn-btn-primary, .bcn-manage-btn {
  background: var(--bcn-button-bg, #ffffff);
  color: var(--bcn-button-text, #111827);
}
.bcn-btn-secondary {
  background: transparent;
  color: var(--bcn-text, #ffffff);
  border-color: rgba(255,255,255,.35);
}
.bcn-prefs {
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,.18);
  padding-top: 14px;
}
.bcn-prefs[hidden] { display: none !important; }
.bcn-pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}
.bcn-pref-row small {
  display: block;
  opacity: .86;
  margin-top: 3px;
}
.bcn-manage-btn-hidden { display: none !important; }
@media (max-width: 782px) {
  #bcn-root {
    left: 12px;
    right: 12px;
  }
  .bcn-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .bcn-actions {
    width: 100%;
  }
  .bcn-btn {
    width: 100%;
    text-align: center;
  }
}
