.sir-consent-banner {
  align-items: center;
  background: #111827;
  bottom: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  gap: 20px;
  justify-content: space-between;
  left: 50%;
  max-width: 760px;
  padding: 16px 18px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 2147483646;
}

.sir-consent-banner p {
  color: inherit;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.sir-consent-banner > div {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.sir-consent-banner button {
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 8px 14px;
}

.sir-consent-accept {
  background: #fff;
  color: #111827;
}

.sir-consent-decline {
  background: transparent;
  color: #fff;
}

.sir-consent-banner button:focus-visible {
  outline: 3px solid #60a5fa;
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .sir-consent-banner {
    align-items: stretch;
    bottom: 8px;
    flex-direction: column;
    gap: 12px;
    width: calc(100% - 16px);
  }

  .sir-consent-banner > div,
  .sir-consent-banner button {
    flex: 1;
  }
}

