body {
  background-color: white;
  color: black;
  font-family: Arial, sans-serif;
  font-size: 16px;
  margin: 20px;
}

/* Título centrado */
h1 {
  text-align: center;
  margin-bottom: 20px;
}

/* Lista de videos sin contenedores */
.video-list {
  max-width: 400px;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}

/* Enlaces simples */
.video-list a {
  display: block;
  padding: 8px;
  margin-bottom: 8px;
  color: blue;
  border: 2px solid #ccc;
  border-radius: 2px;
  text-decoration: none;
}

/* Hover en enlaces */
.video-list a:hover {
  color: darkblue;
  cursor: pointer;
  text-decoration: underline;
}

/* Contenedor del video fijo 640x360 (16:9) */
.video-wrapper {
  position: relative;
  width: 640px;
  height: 360px;
  margin: 30px auto;
  background: black;
}

/* iframe ocupa todo el contenedor */
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Título del video */
#titulo {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: black;
}

/* Buscador */
#search-box {
  display: block;
  padding: 10px;
  color: gray;
  text-decoration: none;
  background-color: #fff;
  border-radius: 8px;
  margin: 10px auto;   /* ← centra el buscador y los enlaces */
  width: 90%;
  max-width: 600px;    /* ← define el ancho */
  text-align: center;  /* ← centra el texto dentro */
}
#search-box::placeholder {
  color: #aaa; /* texto del placeholder visible */
}
