.table-theories {
    width: 750px;
    margin: 40px auto;
}
.table-theories  > div{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.table-theories  > div > div {
    text-align: center;
    margin: 6px 8px;
    border-radius: 5px;
    padding: 10px 0;
    border: 1px solid #D7D7D7
}
.table-theories > div > .title {
    width: 65%;
}
.table-theories  > div > .status {
    width: 35%;
}
.table-theories > div.header > div {
    font-size: 24px;
    font-weight: 800;
    background: #f3f4f6;
}
.table-theories > div.header > div , .table-theories > div > div.status{
    border: none;
}
.table-theories > div > div.status.green{
    background: rgba(42, 187, 156, 0.08);
    border-right: 3px solid #2ABB9C;
}
.table-theories > div > div.status.orange{
    background: rgba(255, 162, 0, 0.08);
    border-right: 3px solid #FFA200;
}
.table-theories > div > div.status.red{
    background: rgba(240, 0, 115, 0.08);
    border-right: 3px solid #F00073;
}