/* Some-B Takeover Connector - Full viewport shell */

.sbtc-open {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 99997;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.95);
  color: #111;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
  backdrop-filter: blur(6px);
}

.sbtc-open:active {
  transform: translateY(1px);
}

.sbtc-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  background: rgba(0,0,0,0.12);
}

.sbtc-overlay.is-open {
  display: block;
}

.sbtc-overlay-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 14px;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.sbtc-overlay-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.sbtc-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.9);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.sbtc-iframe {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 48px);
  border: 0;
  background: transparent;
}

.sbtc-lock-scroll {
  overflow: hidden !important;
  height: 100% !important;
}