#televo-bridge-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.televo-bridge-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
}

.televo-bridge-shell {
  position: relative;
  z-index: 2;
  width: 460px;
  max-width: 92vw;
  height: auto;
  max-height: 92vh;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  display: flex;
  flex-direction: column;
}

.televo-bridge-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  color: #111827;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

.televo-bridge-header {
  padding: 16px 16px 12px;
  min-height: 64px;
  background: #ffffff;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.televo-bridge-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.televo-bridge-title-wrap,
.televo-bridge-title,
.televo-bridge-subtitle {
  display: none !important;
}

.televo-bridge-body {
  background: #ffffff;
  overflow: hidden;
  height: 760px;
  min-height: 760px;
}

#televo-bridge-iframe {
  width: 100%;
  height: 100%;
  min-height: 760px;
  border: 0;
  display: block;
  background: #ffffff;
}

@media (max-width: 768px) {
  #televo-bridge-modal {
    padding: 10px;
  }

  .televo-bridge-shell {
    width: 100%;
    max-width: 100%;
    border-radius: 22px;
    max-height: 94vh;
  }

  .televo-bridge-header {
    padding: 14px 14px 10px;
    min-height: 58px;
  }

  .televo-bridge-logo {
    width: 38px;
    height: 38px;
  }

  .televo-bridge-close {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 26px;
  }

  .televo-bridge-body,
  #televo-bridge-iframe {
    height: 78vh;
    min-height: 650px;
  }
}