/* Fullscreen styles */

:fullscreen .clpp-container,
:-webkit-full-screen .clpp-container {
  width: 100vw !important;
  height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  background: #000;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 0 !important;
  z-index: 1000;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed !important;
}

:fullscreen .prestoplay-custom-controls.modern,
:-webkit-full-screen .prestoplay-custom-controls.modern {
  width: 100vw !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  border-radius: 0 !important;
  z-index: 1001;
  height: auto !important;
  max-height: none !important;
  position: fixed !important;
}

:fullscreen video,
:-webkit-full-screen video {
  width: auto !important;
  height: 100% !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  object-fit: contain !important;
  background: transparent;
  display: block;
  margin: 0 auto;
}

:fullscreen .pp-timeline-container,
:-webkit-full-screen .pp-timeline-container {
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  max-width: 100vw;
}

/* Fullscreen control bar layout adjustments */
.prestoplay-custom-controls.modern {
  flex-direction: column;
  align-items: stretch;
  padding: 12px 18px 8px 18px;
  gap: 0;
}

.pp-timeline-container {
  order: 0;
  margin: 0 0 8px 0;
  width: 100%;
  gap: 0;
  justify-content: stretch;
}

.pp-current-time,
.pp-duration {
  display: none;
}

.pp-controls-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
} 