/* Estilo terminal verde */
body {
    background-color: #000;
    color: #0f0;
    font-family: monospace;
    margin: 0;
    padding: 0;
}

#terminal {
    width: 100%;
    height: 100vh;
    padding: 15px;
    box-sizing: border-box;
    overflow-y: auto;
}

#output {
    white-space: pre-wrap;
    line-height: 1.4em;
}

/* Línea de entrada de comandos */
#input-line {
    display: flex;
    margin-top: 10px;
    align-items: center;
}

.prompt {
    margin-right: 5px;
    font-weight: bold;
}

#cmd {
    background: transparent;
    border: none;
    color: #0f0;
    outline: none;
    flex: 1;
    font-size: 16px;
    caret-color: #0f0;
}

/* Estilo de miniaturas */
.video-item {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.video-item img {
    width: 120px;
    height: 90px;
    margin-right: 10px;
    border: 1px solid #0f0;
    border-radius: 3px;
}

/* iframe de reproducción */
iframe {
    margin-top: 10px;
    border: 2px solid #0f0;
    border-radius: 5px;
}

/* Scroll suave */
#terminal {
    scroll-behavior: smooth;
}
