#video-tour-invite-modal .modal-body p {
  color: #4b5563;
}

.video-tour-player {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .video-tour-player {
    grid-template-columns: 1fr;
  }
}

.video-tour-captions,
.video-tour-transcript {
  max-height: 320px;
  overflow: auto;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: rgba(248, 250, 252, 0.8);
}

.video-tour-transcript .cue,
.video-tour-captions .cue {
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  margin-bottom: 0.25rem;
}

.video-tour-captions {
  text-align: center;
}

.video-tour-transcript .cue.active,
.video-tour-captions .cue.active {
  background: #e0f2fe;
}

.video-tour-transcript .cue[data-disabled="true"] {
  user-select: none;
  cursor: not-allowed;
}

.video-tour-fullscreen-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  z-index: 1055;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.video-tour-fullscreen-overlay .card {
  width: min(1100px, 100%);
}

.upload-control {
  position: relative;
}

.upload-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
}
