
#container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Título */
h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2em;
  font-weight: bold;
}

/* Controles: label + input + botón */
#controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

#controls label {
  font-size: 1rem;
}

#controls input {
  width: 300px;
  padding: 8px 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#controls button {
  padding: 8px 16px;
  font-size: 1rem;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
#controls button:hover {
  background: #0056b3;
}

/* Línea divisoria */
hr {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}

/* Vídeo/ad container */
#videoplayer {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #000;
  margin-bottom: 20px;
}
#videoplayer video,
#videoplayer #adcontainer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* Consola */
#console-wrapper {
  display: flex;
  justify-content: center;
}
#console {
  width: 100%;
  max-width: 800px;
  height: 200px;
  padding: 10px;
  font-family: monospace;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}