/* Video Container */
.video-container {
  position: relative;
  width: 100vw;
  height: 100vh; /* full screen initially */
  overflow: hidden;
  transition: height 1s ease-in-out;
  z-index: 1;
}

.video-container.shrink {
  height: 60vh; /* shrinks to 60% height */
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill container */
}

/* Maximize Button */
.maximize-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out;
}

.maximize-btn img {
  width: 32px;
  height: 32px;
}

.maximize-btn.hidden {
  display: none;
}
