thead tr {
    background-color: #003b5c;
    color: #FFFFFF;
}

@media screen and (max-width: 600px) {
    table.dates thead {
        display: none;
    }

    table.dates td:not(:first-child) {
        display: inline-block;
    }

    table.dates td:first-child {
        background-color: #003b5c;
        border-right: 1px solid #00B5E2;
        border-radius: 6px;
        color: #FFFFFF;
        display: block;
    }

    table.dates td:last-child {
        border-right: none !important;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    table.dates td:not(:first-child) {
        width: 50%;
    }

    table.dates td::before {
        content: attr(label);
        font-weight: bold;
        width: 20px;
        min-width: 20px;
    }
}