.section-table {
    padding: 0;
    margin-bottom: 160px;
}
.table--small {
    margin-bottom: 42px;
}
.table-text__container-small {
    max-width: 1170px;
}
.table-content__title {
    color: #FFF;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 114%;
    font-size: 36px;
    margin-bottom: 42px;
}
table.table-content__table {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    width: 100%;
}
table.table-content__table.table-small {
    max-width: 60%;
    margin: 0 auto;
}
table.table-content__table th {
    color: #27F5D1;
    font-family: Metropolitano;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%;
    letter-spacing: 0.14px;
    text-align: left;
    padding: 12px;
    min-width: 180px;
}
table.table-content__table td {
    padding: 12px;
    vertical-align: top;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%;
    letter-spacing: 0.14px;
    min-width: 180px;
}
table.table-content__table td b{
    font-size: 16px;
    font-weight: 700;
    line-height: 128%;
    letter-spacing: 0.16px;
    display: block;
}
.table-content__table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}
.table-content__table-scroll::-webkit-scrollbar {
    display: none;
}
.table-content__table-scroll.dragging {
    cursor: grabbing;
    user-select: none;
}
.table-scrollbar-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.table-scrollbar-wrapper.show {
    opacity: 1;
    visibility: visible;
}
.custom-scrollbar {
    flex: 1;
    height: 6px;
    position: relative;
}
.custom-scrollbar-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(11, 4, 19, 0.5);
    border-radius: 60px;
}
.custom-scrollbar-thumb {
    position: absolute;
    left: 0;
    top: 16.67%;
    bottom: 16.67%;
    background: #8801DB;
    border-radius: 60px;
    cursor: pointer;
    transition: background 0.2s;
}
.custom-scrollbar-thumb:hover {
    background: #9a1aed;
}
.table-scroll-btn {
    flex: none;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.table-scroll-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}
.table-scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
.table-scroll-btn svg {
    width: 8px;
    height: 14px;
}
@media screen and (max-width: 1440px) {
    .section-table table.table-content__table {
        min-width: max-content;
    }
}
@media screen and (max-width: 1024px) {
    .section-table {
        margin-bottom: 120px;
    }
}
@media screen and (max-width: 850px) {
    table.table-content__table.table-small {
        max-width: 90%;
    }
}
@media screen and (max-width: 767px) {
    table.table-content__table.table-small {
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .table-scroll-btn {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }
    .table-scroll-btn svg {
        width: 6px;
        height: 12px;
    }
    .table-scrollbar-wrapper {
        gap: 12px;
        margin-top: 12px;
    }
}
@media screen and (max-width: 460px) {
    .section-table {
        margin-bottom: 80px;
    }
    .table--small {
        margin-bottom: 32px;
    }
    .table-scrollbar-wrapper {
        gap: 8px;
        margin-top: 8px;
    }
    .table-scroll-btn {
        width: 24px;
        height: 24px;
        min-width: 24px;
    }
    .custom-scrollbar {
        height: 6px;
    }
}