.table-style-1 {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    font-size: 20px;
}

    .table-style-1 tr th,
    .table-style-1 tr td {
        border-right: 1px solid #bbb;
        border-bottom: 1px solid #bbb;
        box-shadow: 2px 2px 1px #e5dfcc;
    }

        .table-style-1 tr th:first-child,
        .table-style-1 tr td:first-child {
            border-left: 1px solid #bbb;
        }

    .table-style-1 tr th {
        border-top: 1px solid #bbb;
    }

    /* top-left border-radius */
    .table-style-1 tr:first-child th:first-child {
        border-top-left-radius: 6px;
    }

    /* top-right border-radius */
    .table-style-1 tr:first-child th:last-child {
        border-top-right-radius: 6px;
    }

    /* bottom-left border-radius */
    .table-style-1 tr:last-child td:first-child {
        border-bottom-left-radius: 6px;
    }

    /* bottom-right border-radius */
    .table-style-1 tr:last-child td:last-child {
        border-bottom-right-radius: 6px;
    }


    .table-style-1 th, .table-style-1 td {
        padding: 12px 20px;
    }

    .table-style-1 th {
        background: #ee2a44;
        color: #fff;
    }

    .table-style-1 td {
        background: #EFF1F6;
    }

    .table-style-1 tr:nth-child(odd) td {
        background: #f9f9f9;
    }

   
