.table-container {
    color: #4D4D4D;
}

.table-container th {
    background: #D6D6D6;
    border: solid 2px white;
    min-width: 120px;
    text-align: center;
    vertical-align: middle;
    font-weight: normal;
    font-size: small;
}

.table-container th:first-child {
    border-radius: 0 10px 0 0;
}

.table-container th:last-child {
    border-radius: 10px 0 0 0;
}

.table-container tr:last-child td:first-child {
    border-bottom-right-radius: 10px;
}

.table-container tr:last-child td:last-child {
    border-bottom-left-radius: 10px;
}

.my-table {
    border-collapse: separate;
    border-spacing: 0;
}

.my-table td {
    height: 36px;
    overflow: hidden;
}

.my-table .td-grid {
    text-align: center;
    vertical-align: middle;
}

.my-table td.options {
    padding: 0;
}

.my-table td.options div {
    height: 100%;
}

.my-table td.options > div > div {
    cursor: pointer;
    font-size: 18px;

    transition: all .2s;
}

.my-table td.options > div > div:hover {
    filter: brightness(80%);
}