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

    width: 100%;
}

.custom-table .table__header{
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 6px 17px;

    background-color: var(--cyan);

    border-top-left-radius: 4px;
    border-top-right-radius: 4px;

    border-bottom: 1px solid var(--gray);
}

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

    margin-bottom: 0;
}

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

.custom-table .table__body th{
    font-weight: 600;
    font-size: 18px;

    padding: 12px 17px;
}

.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;
    align-items: center;
    justify-content: space-between;

    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{
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: #e8e8e8;

    height: 50px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 17px;
}

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