/* Base container and video styles */

.clpp-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #000;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.clpp-container > div:first-child {
  /* Video wrapper - takes remaining space */
  flex: 1;
  position: relative;
  width: 100%;
  min-height: 0;
}

.clpp-container video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  background: #000;
  border-radius: 0;
  object-fit: contain;
  max-height: 100%;
}