/* Estilos para la terminal retro */
#music-terminal {
    position: relative;
    width: 80%;
    max-width: 700px;
    margin: 20px auto;
    padding: 15px;
    background-color: #000;
    border: 2px solid #33ff33;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    color: #33ff33;
    box-shadow: 0 0 10px rgba(51, 255, 51, 0.5);
    overflow: hidden;
    min-height: 200px;
    max-height: 300px;
    overflow-y: auto;
}

#terminal-content {
    white-space: pre-wrap;
    line-height: 1.4;
    font-size: 14px;
}

#terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 16px;
    background-color: #33ff33;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.terminal-line {
    margin: 0;
    padding: 0;
}

.terminal-command {
    color: #33ff33;
    font-weight: bold;
}

.terminal-response {
    color: #ffffff;
}

.terminal-highlight {
    color: #ffff00;
}