.container-show {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  height: 0;
  overflow: hidden;
  margin: 20px 0;
  background-color: #b7d4f3; /* Solo como fondo mientras carga */
  border: 1px solid #e5e7eb;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
