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

table th, table td{
    padding: 8px;
    line-height: 1;
    /* border: 1px solid rgba(255,255,255,0.1); */
    border: 1px solid rgb(63 46 2 / 15%);
}

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

table th{
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    /* background: linear-gradient(0deg, rgba(236, 196, 64, 1) 0%, rgba(255, 250, 138, 1) 100%); */
}

table thead tr{
    border-radius: 5px 5px 0 0;
    background: var(--clr-border-primary);
    color: white;
}

table thead th:first-of-type{
 
    border-radius: 5px 0 0 0;
}

table thead th:last-of-type{

    border-radius: 0 5px 0 0;
}

table .amount{
    font-weight: 600;
}

/* table tr:nth-child(even) {
    background-color: #3c397c;
}

table tr:nth-child(odd) {
    background-color: #2b2463;
} */

.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: rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

.table-pagination ul .active{
	background: var(--gradient-style-2);
    color: var(--clr-style-1);
}

.btn-pagination{
    display: flex;
}