.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── Chat: ensure the panel does not clip on small viewports ── */
@media (max-width: 420px) {
  .site-chat {
    width: calc(100vw - 16px) !important;
    right: 8px !important;
    left: 8px !important;
  }
}

/* ── Prevent body scroll-lock artefacts when split view is active ── */
body.split-view-is-active {
  overflow: hidden;
}
html.split-view-is-active {
  overflow: hidden;
}

/* ── Sessions modal action buttons reset ─────────────────────── */
.docai-restore-btn,
.docai-delete-btn {
  font-family: inherit;
  font-size: 12px;
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  background: transparent;
}
