body{
    font-family: 'Courier New', Courier, monospace;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 20px;
}
.container{
    border: 2px solid #333333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.console{
    background-color: #000000;
    padding: 10px;
    border-radius: 5px;
    font-size: 24px;
}
.block .computer, .block .user{
    margin: 10px 0;
    padding: 10px;
}

.user{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;


}
.computer{
    border-bottom: 1px dotted #0000FF;
    margin-bottom: 20px;
    padding: 10px;
}

.optButton{
    background: none;
    color: #DDDDDD;
    padding: 10px 20px;
    border: 1px solid #FFFFFF;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;

}
.optButton:hover{
    border: 1px solid #0000FF;
    color: white;
}
.optButton:disabled.selected{
    font-weight: bold;
    border: 1px solid #777777;
}
.optButton:disabled{
    color: #555555;
    border: 1px solid #555555;
    cursor: not-allowed;
}
.previous-item {
    color: #777777;
}

/* Fade-out animation for console clear transition */
@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.console.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}