#container_etapas{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#tabela_etapas{
    width: 130vh;
    height: 80vh;
    overflow-y: scroll;
}

#tabela_etapas tr{
    cursor: pointer;
}

.selecionado{
    border: solid 1px rgb(181, 214, 131);
}

#etapa_log {
    width: 100vh;
}

#lblEtapaLog{
    margin: 0px;
    background-color: #1e1e1e;
    border: 1px solid #3c3c3c;
    border-radius: 6px;
    padding: 12px;
    color: #dcdcdc;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    font-family: Consolas, monospace;
    font-size: 14px;
    height: 78vh;
    overflow-y: scroll;
}