﻿
table.blueTable {
    border: 1px solid #CBCBCB;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
}

    table.blueTable td, table.blueTable th {
        border: 1px solid #CBCBCB;
        padding: 3px 2px;
    }

    table.blueTable tbody td {
        font-size: 13px;
    }

    table.blueTable tr:nth-child(even) {
        background: #FFFFFF;
    }

    table.blueTable thead {
        background: #D8F9E9;
        border-bottom: 2px solid #E9E9E9;
    }

        table.blueTable thead th {
            font-size: 15px;
            font-weight: bold;
            color: #333333;
            text-align: center;
            border-left: 1px solid #CBCBCB;
        }

            table.blueTable thead th:first-child {
                border-left: none;
            }

    table.blueTable tfoot td {
        font-size: 14px;
    }

@media only screen and (max-width: 991px) {
    table.blueTable {
        border: 1px solid #CBCBCB;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        border-collapse: collapse;
    }

        table.blueTable tbody td {
            font-size: 8px;
        }

        table.blueTable thead th {
            font-size: 10px;
            font-weight: bold;
            color: #333333;
            text-align: center;
            border-left: 1px solid #CBCBCB;
        }
}