body {
    background-color: black;
    color: white;
    font-family: monospace;
    margin: 0;
    padding: 0;
}

.terminal {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.terminal-header {
    background-color: #333;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-header .buttons {
    display: flex;
    gap: 5px;
}

.terminal-header .buttons span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: red; /* Cambia el color según sea necesario */
}

.terminal-header .buttons .minimize {
    background-color: yellow;
}

.terminal-header .buttons .maximize {
    background-color: green;
}

.terminal-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.section-title {
    font-weight: bold;
    text-decoration: underline;
    margin-bottom: 10px;
}

.prompt {
    color: #00ff00; /* Verde */
    display: inline;
}

.command {
    display: inline;
}

.blink {
    animation: blink 1s steps(2, start) infinite;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}