/* Table wrapper styles*/
.dt-container {
    background-color: #fff;
}
/* Base font and color for the data table */
.gbcharts-data-table {
    font-size: 1.25em;
    color: #000;
}

    /* Header styling */
    .gbcharts-data-table thead th {
        font-size: 1.5em;
        color: #000;
    }

    /* Gain column (3rd column) */
    .gbcharts-data-table tbody td:nth-child(3) {
        color: green;
        font-weight: bold;
    }

    /* Loss column (4th column) */
    .gbcharts-data-table tbody td:nth-child(4) {
        color: red;
        font-weight: bold;
    }
