/* Used to signify the fastest lap of the session (overall or per class). */
.purpleLap {
    color: #8300ff;
}

/* Used to signify a personal best lap within a session or in the driver history. */
.greenLap {
    color: #00a400;
}

/* Used for "best lap" or "lap record" where the lap is ineligible. */
.dqLap {
    color: #bbbbbb;
    text-decoration: line-through;
}

/* Used to dim a points column's cells that are not the total. */
.grayCell {
    color: #999999;
}

/* Used to dim a points column's cells that are not the total, when not being used. */
.grayCellStrike {
    color: #999999;
    text-decoration: line-through;
}

.borderless {
    border: none;
}