/* Simple Flex Table */

.itf_table_container {
    display: block;
    margin-bottom: 15px;
}

.itf_table {
    display: inline-flex;
    flex-direction: column;
    font-size: 16px;
}

.itf_table__header {
    display: flex;
    flex-direction: row;
    justify-content: start;
    border-bottom: 2px solid #666;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    box-shadow: 4px 4px 8px #888;
    height: 50px;
    background: #888888;
    color: #fff;
    font-weight: 600;
}

.table__row {
    display: flex;
    flex-direction: row;
    justify-content: start;
    border-bottom: 2px solid #666;
    box-shadow: 4px 4px 8px #888;
    height: 50px;
    background-color: #cfcfcfcc;
}

.table__row:nth-of-type(2n) {
    background-color: #ecececcc;
}

.table__cell {
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}