table {
    th {
        background: none;
        height: 20px;
        color: #061C41;
        font-family: "Source Sans Pro";
        font-weight: normal;
        font-size: 16px;
        letter-spacing: 0;
        line-height: 20px;
    }

    tr > th {
        text-align: right;
    }

    th, td {
        padding: 5px 10px;
    }

    tr {
        td {
            background-color: #D8DFE5;
            border: 1px solid white;
            border-collapse: collapse;
            color: #002C5A;
            font-family: "Source Sans Pro";
            font-size: 16px;
            font-weight: bold;
            letter-spacing: 0;
            line-height: 20px;
        }

        // Remove left and right borders
        td {
            &:first-of-type {
                border-left: none;
            }
            &:last-of-type {
                border-right: none;
            }
        }

        // Remove top border and round top corners
        &:first-of-type {
            td {
                border-top: none;
                &:first-of-type {
                    border-top-left-radius: 4px;
                }
                &:last-of-type {
                    border-top-right-radius: 4px;
                }
            }
        }

        // Remove bottom border and round bottom corners
        &:last-of-type {
            td {
                border-bottom: none;
                &:first-of-type {
                    border-bottom-left-radius: 4px;
                }
                &:last-of-type {
                    border-bottom-right-radius: 4px;
                }
            }
        }
    }

    
}