table.table {
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 18px;
    /*border: var(--border);*/
    overflow: hidden;
    font-size: 0.8rem;
    padding: 0;
    position: relative;
    /*background: rgba(15, 23, 42, 0.6);*/
    /*background: rgba(255, 255, 255, 0.08);*/
    backdrop-filter: blur(18px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.45),
            inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.table::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;

    box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 -10px 30px rgba(255, 255, 255, 0.08);
}

.table th {
    text-transform: uppercase;
    text-align: left;
    vertical-align: middle;
    height: 50px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.table tr:hover td {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(170%);
}

.table td {
    vertical-align: middle;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.6);
}

.table .text-right {
    text-align: right;
}

.table td .cell-align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.table .main-cell {
    color: var(--link-default-color);
    font-weight: bold;
}