html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
}

.container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.video-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta el video sin distorsionarlo */
  display: block;
}

#video-feedback {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(0,0,0,0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 18px;
  display: none;
  pointer-events: none;
}
