.spin-history {
    margin: 30px 0;
    background: #fff;
    border-radius: 10px;
}

.spin-history__inner {
    overflow-x: auto;
}

.spin-history__table {
    width: 100%;

    padding: 24px 20px 20px;
    border-collapse: separate;
}

.spin-history__table thead tr th {
    padding: 10px 14px;
    font-size: 14px;
    color: #6F7897;
    text-align: left;
    border: 1px solid #ECEFFA;
    border-left: none;
    border-top: none;
}

.spin-history__table thead tr th:last-of-type {
    border-right: none;
}

.spin-history__table tbody {
    position: relative;

}

.spin-history__table tbody::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background: rgba(255, 255, 255, 0.3);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease 0s;
    z-index: 1;
}

.spin-history__table tbody.preload::before {
    visibility: visible;
    opacity: 1;
}

.spin-history__table tbody tr td {
    padding: 8px 14px;
    text-align: left;
    border: 1px solid #ECEFFA;
    font-size: 14px;
    color: #333;
    border-left: none;
    border-top: none;
}

.spin-history__table tbody tr td:last-of-type {
    border-right: none;
}

.spin-history__table tbody tr td img {
    max-height: 36px;
}

.spin-history__result {
    display: flex;
    align-items: center;
    min-width: 90px;
}

.spin-history__result img {
    width: auto;
    margin-right: 6px;
    max-height: 36px;
}

@media only screen and (max-width: 767px) {
    .spin-history__table {
        padding: 15px 10px;
    }
}

.spin-history__pagination {
    padding: 0 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    gap: 10px;
}

@media only screen and (max-width: 767px) {
    .spin-history__pagination {
        padding: 0 10px 15px;

    }
}

.spin-history__pagination a.page-numbers,
.spin-history__pagination span.page-numbers {
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    text-align: center;
    line-height: 45px;
    color: #333;
    background-color: #fff;
    transition: all 0.2s ease-in-out;
}

.spin-history__pagination a.page-numbers:hover {
    background-color: var(--color-first-button-bg);
    color: #fff;
    text-decoration: none;
}


.spin-history__pagination span.current {
    color: #fff;

    background-color: var(--color-first-button-bg);
}

[disabled] {
    pointer-events: none;
}