html.sabai-company-demo-mode body {
  padding-top: 74px !important;
}

#sabai-company-demo-banner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2147483646;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 22px;
  border-bottom: 2px solid #d8ad32;
  background: #071f2d;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

#sabai-company-demo-banner strong {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: #efcb5c;
  color: #082131;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
}

#sabai-company-demo-banner span {
  max-width: 920px;
  font-size: 0.9rem;
  line-height: 1.45;
}

#sabai-demo-blocked-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2147483647;
  max-width: min(420px, calc(100vw - 44px));
  padding: 15px 18px;
  border: 1px solid #e4c154;
  border-radius: 14px;
  background: #071f2d;
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#sabai-demo-blocked-notice.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  html.sabai-company-demo-mode body {
    padding-top: 112px !important;
  }

  #sabai-company-demo-banner {
    min-height: 112px;
    flex-direction: column;
    gap: 7px;
    padding: 10px 14px;
  }

  #sabai-company-demo-banner span {
    font-size: 0.8rem;
  }
}