.badge_new {
    color: #FFFFFF;
    background-color: red;
    padding: 1px 4px;
    border-radius: 5px;
}

.table-container {
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
    margin: 0 auto;
}

.table-row {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
}

.heading {
    background-color: #ececec;
    color: #3e3e3e;
    font-weight: bold;
}

.row-item {
    display: flex;
    align-items: center;
    transition: all 0.15s ease-in-out;
    padding: 3px 5px;
}

.row-item.left {
    justify-content: start;
}

.row-item.center {
    justify-content: center;
}

.row-item.right {
    justify-content: end;
}

.row-item.col-1 {
    flex: 0 0 auto;
}

.row-item.col-2 {
    flex: 0 0 auto;
    min-width: 80px;
}

.row-item.col-3 {
    flex: 0 0 1;
}