.token-table {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #ffffff00;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 5%;
    table-layout: fixed; /* <- Fix column widths */
}

.token-table th,
.token-table td {
    border: 1px solid #dddddd98;
    padding: 12px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.05rem;
    background-color: #002f3f00;
}

.token-table th {
    background-image: linear-gradient(to right top, #002463, #001f5a, #00174f, #001245, #000e3a);
    color: rgb(207, 207, 207);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 12px;
}

/* .token-table tr:nth-child(even) {
    background-color: #f2f2f2;
} */

.token-table tr:hover {
    background-image: linear-gradient(to right top, #3d5a8c, #355181, #2e476f, #273c5c, #1d314a);

    cursor: pointer;
}

.token-name {
    font-weight: bold;
    color: #ffffff;
}

.token-table .ranknr {
    font-weight: 900;
    font-size: 15px;
    background-image: linear-gradient(to right top, #3d5a8c, #355181, #2e476f, #273c5c, #1d314a);
    color: #ffffff;
}

.token-table .ranknr1 {
    opacity: 1;
}
.token-table .ranknr2 {
    opacity: 0.90;
}

.token-table .ranknr3 {
    opacity: 0.80;
}

.token-table .ranknr4 {
    opacity: 0.70;
}

.token-table .ranknr5 {
    opacity: 0.55;
}


.token-table th:nth-child(1),
.token-table td:nth-child(1) {
    width: 20%;
}

.token-table th:nth-child(2),
.token-table td:nth-child(2) {
    width: 30%;
}

.token-table th:nth-child(3),
.token-table td:nth-child(3) {
    width: 20%;
}

.token-table th:nth-child(4),
.token-table td:nth-child(4) {
    width: 20%;
}

.token-table th:nth-child(5),
.token-table td:nth-child(5) {
    width: 20%;
}