.custom-table {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 0 4px var(--gray);
}

.custom-table .table__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 17px;
    border-bottom: 1px solid var(--gray);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: var(--cyan);
}

.custom-table .table__header h2 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.custom-table .table__body {
    width: 100%;
}

.custom-table .table__body th {
    padding: 12px 17px;
    font-size: 18px;
    font-weight: 600;
}

.custom-table .table__body td {
    padding: 12px 17px;
}

.custom-table .table__body th:first-child {
    width: 40%;
}

.custom-table .table__body th:nth-child(2) {
    width: 30%;
}

.custom-table .table__body th:last-child {
    width: 30%;
}

.custom-table .table__body tbody {
    font-size: 18px;
}

.custom-table td {
    vertical-align: middle;
}

.custom-table .table__body tbody td:first-child div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.custom-table .table__body tbody td:first-child div div {
    display: flex;
    flex-direction: column;
    width: min-content;
}

.custom-table .table__body th,
.custom-table .table__body td {
    border: 1px solid var(--gray);
    border-top: transparent;
}

.custom-table .table__body th,
.custom-table .table__body td {
    border: 1px solid var(--gray);
    border-top: transparent;
}

.custom-table .table__body th,
.custom-table .table__body td:first-child {
    border: 1px solid var(--gray);
    border-top: transparent;
    border-left: transparent;
}

.custom-table .table__body th:last-child,
.custom-table .table__body td:last-child {
    border: 1px solid var(--gray);
    border-top: transparent;
    border-right: transparent;
}

.custom-table .table__body tr:last-child td {
    border-bottom: transparent;
}

.custom-table .table__footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    padding: 0 17px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-color: #e8e8e8;
}

.custom-table .pagination {
    display: none;
}