.i-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 10px;
}

.i-table thead {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.i-table thead th:first-child {
    border-top-left-radius: 10px;
}

.i-table thead th:last-child {
    border-top-right-radius: 10px;
}

.i-table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.i-table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}


.i-table th {
    padding: 26px;
    font-size: 36px;
}

.i-table td {
    text-align: center;
    padding: 26px;
    font-size: 34px;
}

.i-table tbody tr:nth-of-type(odd) {
    background-color: #ececec;
}

.i-table tbody tr:nth-of-type(even) {
    background-color: white;
}

.i-table tbody tr:hover {
    background-color: #eef0f3;
}

.i-table thead {
    background-color: #1a68fe;
    color: white;
}

.i-table a {
    text-decoration: none;
}

.i-table a:link {
    color: #1a68fe;
}
