/* styles.css */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}


::-webkit-scrollbar {
  width: 0px;
    height: 0px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
    flex-direction: column;
  background-color: black;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ocultar los controles por defecto del video */
video::-webkit-media-controls {
  display: none !important;
}

.controls {
 
  position: absolute;
  top: 45vh;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* Evitar clics cuando están ocultos */
}

.control-button {
  text-shadow: 2px 2px 10px black;
  background: none;
  color: white;
  border: none;
  padding: 10px 100px;
  font-size: 50px;
  cursor: pointer;
  margin: 0 10px; /* Espacio entre botones */
}

/* Botón central más grande */
.center-button {
  font-size: 80px;
  padding: 20px;
}

.control-button:focus-visible {
  outline: none; /* Eliminar el borde de enfoque predeterminado */
  text-shadow: 2px 2px 10px rgba(0, 150, 255, 0.7); /* Sombra azul para destacar el botón */
  transform: scale(1.1); /* Escalar ligeramente para dar efecto de enfoque */
  transition: transform 0.2s ease, box-shadow 0.2s ease; /* Transición suave */
}



/* Barra de progreso */
.progress-bar {
  position: absolute;
  top: 35vh;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  appearance: none;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* Adaptaciones para barra de progreso */
.progress-bar:focus-visible {
  outline: none; /* Sin borde predeterminado */
  box-shadow: 0px 0px 5px 5px rgba(0, 150, 255, 1); /* Sombra azul más suave */
}

.progress-bar::-webkit-slider-thumb {
  appearance: none;
  width: 15px;
  height: 15px;
  background-color: white;
  cursor: pointer;
  border-radius: 50%;
}

/* Estilo para mostrar los controles */
.video-container.show-controls .controls {
  opacity: 1;
  pointer-events: auto; /* Permitir clics cuando están visibles */
    
}

.emitidos{
    
    
    position: absolute;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    overflow-x: scroll;
    bottom:1vh;
    width: 100vw;
    background: black;
    padding: 10px;
    opacity: 0;
    pointer-events: auto;
    transition: transform 1.5s ease;
}



.miniaturas{
    
    width: 200px;
    height: auto;
    border-radius: 3px;
    
    
}


.botonminiatura {
    outline: none;
    margin-left: 10px;
    width: 200px;
      
}



.diaemision{
    position: fixed;
    margin-top: -40px;
    background: black;
    color: white;
    font-size: large;
    font-family: sans-serif;
    padding: 10px 10px 2px 10px;
    border-radius: 0px  10px;
}

.botonminiatura:focus-visible {
    box-shadow: 0px 0px 5px 5px rgba(0, 150, 255, 1);
    width: 310px;
    border: 5px;
    
    
}

.mosca{
    position: absolute;
    top: 5vh;
    right: 5vw;
}

.bx-burst {
  animation-duration: 1s; /* Ajusta la duración de la animación */
  animation-iteration-count: 1; /* Ejecutar solo una vez */
}


