table{
    width: 100%;
    border-collapse: collapse;
}

table th, table td{
    padding: 8px;
    line-height: 1;
    border: 1px solid #dadada;
}

table tbody *{
    font-size: 14px;
}

table th{
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    background: var(--grd-primary);
}

table td{
    color: white;
}


table .amount{
    font-weight: 600;
}

.table-pagination{
	display: flex;
	gap: 5px;
	align-items: center;
	justify-content: center;
    margin: 10px auto 0;
    font-size: 14px;
}

.table-pagination ul{
	margin: 0;
	padding: 0;
	display: flex;
	gap: 5px;
	list-style:none;
}

.table-pagination li{
	width: 24px;
    height: 24px;
    box-sizing: border-box;
    padding: 5px;
    text-align: center;
    border-radius: 5px;
    line-height: 1;
	background: transparent;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.table-pagination ul .active{
	border: 2px solid #ffffff;
    color: var(--clr-toggle-on)
}

.btn-pagination{
    display: flex;
}