/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff; /* Blanco puro */
    color: #1a1a1a;           /* Gris casi negro para no cansar la vista */
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

#terminal {
    width: 100%;
    max-width: 800px;
}

header {
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

hr {
    border: 0;
    border-top: 1px dashed #cccccc;
    margin: 10px 0;
}

#output {
    margin-bottom: 20px;
    white-space: pre-wrap; /* Mantiene los espacios y saltos de línea del JSON */
}

.input-line {
    display: flex;
    align-items: center;
}

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

#command-input {
    background: transparent;
    border: none;
    color: #1a1a1a;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    width: 100%;
}

/* Estilo para links dentro de la terminal */
a {
    color: #0055ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Scrollbar minimalista */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb {
    background: #eeeeee;
}