.consent-banner[hidden] { display: none; }
.consent-banner {
  position: fixed;
  z-index: 1000;
  inset: auto 16px 16px;
  max-width: 760px;
  margin: 0 auto;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid #ccd6dd;
  border-radius: 6px;
  background: #fff;
  color: #173047;
  box-shadow: 0 8px 28px #0e223a24;
  font: 14px/1.45 Arial, sans-serif;
}
.consent-banner p { margin: 0; }
.consent-actions { display: flex; flex-shrink: 0; gap: 8px; }
.consent-actions button {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid #183a57;
  border-radius: 4px;
  color: #183a57;
  background: #fff;
  cursor: pointer;
  font: inherit;
}
.consent-actions button:last-child { color: #fff; background: #183a57; }
@media (max-width: 600px) {
  .consent-banner { display: block; inset: auto 8px 8px; padding: 14px; }
  .consent-actions { margin-top: 12px; }
  .consent-actions button { flex: 1; }
}
