.sc-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2147483000;
  box-sizing: border-box;
  padding: 20px 24px;
  background: #1b2830;
  color: #ccc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
  text-align: center;
}
.sc-consent-banner:focus {
  outline: none;
}
.sc-consent-banner__inner {
  max-width: 720px;
  margin: 0 auto;
}
.sc-consent-banner__title {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
}
.sc-consent-banner__message {
  margin: 0 0 16px 0;
}
.sc-consent-banner__link {
  color: #93c5fd;
  text-decoration: underline;
}
.sc-consent-banner__link:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}
.sc-consent-banner__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sc-consent-banner__button {
  box-sizing: border-box;
  min-width: 140px;
  padding: 10px 24px;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid #ffffff;
  border-radius: 6px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.sc-consent-banner__button:hover {
  background: #e5e7eb;
  border-color: #e5e7eb;
  transform: translateY(-1px);
}
.sc-consent-banner__button:active {
  transform: translateY(0);
}
.sc-consent-banner__button:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}
