.table_col {
    font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
    /* Set the font family for the table columns */
    font-size: 14px;
    /* Set the font size for the table columns */
    width: 660px;
    /* Set the width of the table columns */
    background: white;
    /* Set the background color for the table columns */
    text-align: left;
    /* Align the text to the left in the table columns */
    border-collapse: collapse;
    /* Collapse the borders between cells */
    color: #3E4347;
    /* Set the text color for the table columns */
}

.table_col th:first-child,
.table_col td:first-child {
    color: #F5F6F6;
    /* Set the text color for the first child (header or cell) in the table columns */
    border-left: none;
    /* Remove the left border for the first child (header or cell) in the table columns */
}

.table_col th {
    font-weight: normal;
    /* Set normal font weight for the table header */
    border-bottom: 2px solid #F5E1A6;
    /* Add a bottom border to the table header */
    border-right: 20px solid white;
    /* Add a right border to the table header */
    border-left: 20px solid white;
    /* Add a left border to the table header */
    padding: 8px 10px;
    /* Add padding to the table header */
}

.table_col td {
    border-right: 20px solid white;
    /* Add a right border to the table cells */
    border-left: 20px solid white;
    /* Add a left border to the table cells */
    padding: 12px 10px;
    /* Add padding to the table cells */
    color: #8b8e91;
    /* Set the text color for the table cells */
}