#status {
    background: #28404c;
    color: white;
    margin: 0;
    height: 55px;
}
#status.status-done {
    background: #339344;
    color: white;
}
#status.status-running {
    background: #3589c7;
    color: white;
}
#status.status-error {
    background: #cd5151;
    color: white;
}
#status.status-warning {
    background: #c59354;
    color: white;
}
#status.status-stopped {
    background: #28404c;
    color: #819aa7;
}
#output {
    background: #28404c;
    color: white;
    margin: 0;
    min-height: 50vh;
    height: calc(100% - 55px);
}

html, body, .h-100vh {
    height: 100vh;
}

@media (max-width: 767px) {
    
    .h-100vh {
        height: auto;
    }
    
}