.pageTable-top {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px 0 rgba(101, 101, 101, 0.1);
    padding: 12px;
}
.pageTable-search {
    position: relative;
    width: 210px;
}
.pageTable {
    padding: 40px 0 72px;
}
.pageTable-search__input {
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #c7ced4;
    padding-left: 35px;
    height: 36px;
    color: #333;
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
}
.pageTable-search svg {
    position: absolute;
    left: 6px;
    top: 6px;
    pointer-events: none;
    user-select: none;
}
.pageTable-days {
    display: flex;
    align-items: center;
    margin-right: auto;
}
.pageTable-days__title {
    color: #333;
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
    display: flex;
    white-space: nowrap;
    align-items: center;
}
.pageTable-days__title svg {
    margin-right: 4px;
}
.pageTable-days__list {
    display: flex;
    align-items: center;
    padding-left: 4px;
}
.pageTable-days__label {
    user-select: none;
    display: block;
    margin-left: 8px;
    cursor: pointer;
}
.pageTable-days__label input {
    display: none;
}
.pageTable-days__label span {
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 11px;
    user-select: none;
    border-radius: 12px;
    border: 1px solid #c7ced4;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
}
.pageTable-days__label:hover span {
    border-color: #ff7316;
}
.pageTable-days__label input:checked + span {
    border-color: #f9e6d2;
    background: #f9e6d2;
    color: #ff7316;
}
.pageTable-price {
    margin-left: 40px;
    margin-right: 24px;
    display: flex;
    align-items: center;
}
.pageTable-price__wrapper {
    width: 123px;
    border-radius: 12px;
    border: 1px solid #c7ced4;
    height: 36px;
}
.pageTable-price__input {
    width: 47px;
    min-width: 47px;
    border: none;
    border-radius: 0;
    border-right: 1px solid #c7ced4;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    height: 34px;
    appearance: none;
}
.pageTable-price__input::placeholder {
    color: #333;
}
.pageTable-price .pageTable-price__text {
    padding: 0 4px 0 5px;
    color: #333;
    font-size: 12px;
    font-weight: 300;
    line-height: 120%;
}
.pageTable-price__btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 8px;
    background: #f9e6d2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    user-select: none;
}
.pageTable-price {
    position: relative;
}
.pageTable-price__wrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-left: 12px;
}
.pageTable-selects {
    display: flex;
    align-items: center;
}
.pageTable-select {
    margin-left: 12px;
    position: relative;
}
.pageTable-select:first-child {
    margin-left: 0;
}
.pageTable-select__title {
    height: 36px;
    padding: 9px;
    padding-left: 11px;
    border-radius: 12px;
    border: 1px solid #f9e6d2;
    color: #ff7316;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s;
    user-select: none;
}
.pageTable-select.open .pageTable-select__title,
.pageTable-select.active .pageTable-select__title,
.pageTable-select__title:hover {
    border: 1px solid #ff7316;
}
.pageTable-select__title span {
    display: inline-flex;
    margin-right: 8px;
}
.pageTable-select__title strong {
    display: none;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    text-align: center;
    background: #ff7316;
    color: #fff;
    border-radius: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
}
.pageTable-select__title.active svg {
    display: none;
}
.pageTable-select__title.active strong {
    display: flex;
}
.pageTable-select__wrapper {
    position: absolute;
    top: calc(100% + 3px);
    z-index: 3;
    border-radius: 16px;
    border: 1px solid #ececec;
    background: #fff;
    box-shadow: 0 10px 30px 0 rgba(101, 101, 101, 0.1);
    width: 100%;
}
.pageTable-select__search {
    border-bottom: 1px solid #ececec;
    padding: 7px;
}
.pageTable-select__clear {
    padding: 16px 7px 12px;
    user-select: none;
    cursor: pointer;
    color: #ff7316;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pageTable-select__clear svg {
    margin-left: 8px;
}
.pageTable-select__list {
    padding: 0 14px 11px;
    max-height: 320px;
    overflow-y: auto;
}
.pageTable-select__list::-webkit-scrollbar {
    width: 6px;
}
.pageTable-select__list::-webkit-scrollbar-track {
    background: transparent;
}
.pageTable-select__list::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #c7ced4;
}
.pageTable-select__label {
    margin-top: 20px;
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    color: #090909;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}
.pageTable-select__label input {
    display: none;
}
.pageTable-select__label strong {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-right: 12px;
    border-radius: 4px;
    border: 2px solid #676767;
    background-repeat: no-repeat;
    background-position: center;
}
.pageTable-select__label input:checked + strong {
    border-color: #ff7316;
    background-color: #ff7316;
    background-image: url('data:image/svg+xml,<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 9.4L0 5.4L1.4 4L4 6.6L10.6 0L12 1.4L4 9.4Z" fill="white"/></svg>');
}
.pageTable-select__search .pageTable-search {
    position: relative;
    width: 100%;
}
.pageTable-select__wrapper {
    display: none;
}
.pageTable-select.open .pageTable-select__wrapper {
    display: block;
}
.mainProfit-wrapper {
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    background-image: url("../img/profit/bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
}
.mainProfit-updated {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #090909;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    opacity: 0.7;
}
.mainProfit-title {
    color: #090909;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    line-height: 110%;
}
.mainProfit-title span {
    background: linear-gradient(278deg, #f99515 -7.42%, #ff7316 112.6%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mainProfit-subtitle {
    margin-top: 12px;
    color: #090909;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
}

.bottomProfit {
    padding: 0px 50px 0px 50px;
}
/*.bottomProfit-block {*/
/*    width: calc(50% - 10px);*/
/*}*/
.bottomProfit-list {
    display: flex;
    justify-content: space-between;
}
.bottomProfit-title {
    color: #090909;
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
}
.bottomProfit-title span {
    background: linear-gradient(278deg, #f99515 -7.42%, #ff7316 112.6%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bottomProfit-text {
    color: #090909;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}
.bottomProfit-subtitle {
    color: #090909;
    font-size: 18px;
    font-weight: 300;
    line-height: 140%;
    margin-top: 20px;
}
.bottomProfit-ul {
    margin: 16px 0 40px;
    list-style-type: none;
    display: block;
    padding: 0;
}
.bottomProfit-ul li {
    margin: 8px 0 0 0;
    position: relative;
    padding-left: 16px;
    color: #090909;
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
}
.bottomProfit-ul li::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 13px;
    background-image: url('data:image/svg+xml,<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="6" cy="6.5" r="4" fill="url(%23paint0_linear_337_62936)"/><circle cx="6" cy="6.5" r="5" stroke="%23FB8C15" stroke-opacity="0.3" stroke-width="2"/><defs><linearGradient id="paint0_linear_337_62936" x1="10.6097" y1="10.98" x2="-0.122765" y2="9.48307" gradientUnits="userSpaceOnUse"><stop stop-color="%23F99515"/><stop offset="1" stop-color="%23FF7316"/></linearGradient></defs></svg>');
    background-repeat: no-repeat;
    left: -2px;
    top: calc(50% - 6.5px);
}
.bottomProfit-ul li:first-child {
    margin-top: 0;
}
.bottomProfit-right {
    padding-top: 122px;
}
.factsProfit {
    padding-bottom: 100px;
}
.factsProfit-title {
    color: #090909;
    font-size: 32px;
    font-weight: 700;
    line-height: 120%;
}
.factsProfit .bottomProfit-ul {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 12px -24px 0 0;
}
.factsProfit .bottomProfit-ul li {
    width: calc(33.333% - 24px);
    margin-right: 24px;
}
.factsProfit-list {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}
.factsProfit-text {
    color: #090909;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}
.factsProfit-block {
    width: calc(50% - 10px);
}
.factsProfit-wrapper {
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 30px 0 rgba(101, 101, 101, 0.1);
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}

.pageTable-block {
    margin-right: 32px;
}
.pageTable-block:nth-child(1) {
    width: 68px;
}
.pageTable-block:nth-child(2) {
    width: 96px;
}
.pageTable-block:nth-child(3) {
    width: 200px;
}
.pageTable-block:nth-child(4) {
    flex-grow: 1;
}
.pageTable-block:nth-child(5) {
    width: 56px;
    margin-right: 16px;
}
.pageTable-block:nth-child(6) {
    width: 107px;
    margin-right: 16px;
}
.pageTable-block:nth-child(7) {
    width: 84px;
    margin-right: 16px;
}
.pageTable-block:nth-child(8) {
    width: 88px;
    min-width: 88px;
    margin-right: 16px;
}
.pageTable-block:nth-child(9) {
    width: 80px;
    margin-right: 0;
}
.pageTable-wrapper {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px 0 rgba(101, 101, 101, 0.1);
}
.pageTable-wrapper__top {
    padding: 8px;
    border-bottom: 1px solid #ececec;
}
.pageTable-blocks {
    padding: 8px;
    display: flex;
}
.pageTable-block__title {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    user-select: none;
    display: flex;
    align-items: center;
    min-height: 24px;
}
.pageTable-block__date svg {
    margin: 0 4px 0 2px;
}
.pageTable-block__bold {
    padding: 2px;
}
.pageTable-wrapper__top {
    display: flex;
    padding: 12px;
    align-items: center;
}
.pageTable-block__bold.block-after::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("../img/profit/arrow.svg");
    margin-left: 2px;
}

/* Скрываем стрелку для блока "Шум" (5-й блок) */
.pageTable-block:nth-child(5) .pageTable-block__bold.block-after::after {
    display: none;
}
.pageTable-blocks {
    font-size: 14px;
    line-height: 120%;
    font-weight: normal;
    color: #090909;
}
.pageTable-item__date {
    display: flex;
    align-items: center;
}
.pageTable-item__date strong {
    font-size: 16px;
    color: #333;
}
.pageTable-item__date small {
    width: 13px;
    height: 13px;
    min-width: 13px;
    background-image: url("../img/profit/circle.svg");
    margin: 0 2px;
}
.pageTable-item__date span {
    font-size: 12px;
    color: #676767;
}

/* Стили для дат в зависимости от времени */
.pageTable-item__date.date-current {
    color: #28a745; /* Зеленый для текущих/прошедших дат */
}

.pageTable-item__date.date-current strong {
    color: #28a745;
}

.pageTable-item__date.date-current span {
    color: #28a745;
}

.pageTable-item__date.date-future {
    color: #dc3545; /* Красный для будущих дат */
}

.pageTable-item__date.date-future strong {
    color: #dc3545;
}

.pageTable-item__date.date-future span {
    color: #dc3545;
}
body {
    content-visibility: visible !important;
    will-change: auto !important;
}

.pageTable-blocks .pageTable-block {
    padding: 2px;
}
.pageTable-items {
    display: flex;
    align-items: center;
    padding: 4px 4px 16px;
    width: 100%;
    flex-direction: column;
    /*scroll*/
    contain: none !important;
    content-visibility: visible !important;
    will-change: auto !important;
}
.pageTable-item {
    margin-top: 4px;
    padding: 8px;
    border-radius: 12px;
    background: #f6f6f6;
    width: 100%;
    display: flex;
    align-items: center;
}
.pageTable-item__algorithm-title {
    color: #333;
    line-height: 120%;
}
.pageTable-item__algorithm-text {
    margin-top: 4px;
    font-size: 12px;
    color: #676767;
    line-height: 120%;
}
.pageTable-item__model {
    color: #090909;
    display: block;
    text-decoration: none;
}
.pageTable-item__model:hover {
    text-decoration: underline;
}

/* Стили для неактивных заголовков моделей (без ссылок) */
.pageTable-item__model--disabled {
    color: #999 !important;
    cursor: default !important;
    pointer-events: none !important;
}

.pageTable-item__model--disabled:hover {
    text-decoration: none !important;
}
.pageTable-item__model-container {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pageTable-item__manufacturer-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.pageTable-item__noise {
    text-align: center;
    color: #090909;
}
.pageTable-item__title {
    font-size: 14px;
    line-height: 120%;
    color: #090909;
}
.pageTable-item__text {
    margin-top: 4px;
    color: #676767;
    font-size: 10px;
    line-height: 120%;
}
.pageTable-item__box {
    padding: 0 6px;
    text-align: right;
}
.pageTable-item__btn {
    min-width: 65px;
    max-width: 65px;
    width: 65px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    font-size: 11px;
    padding: 2px 4px;
    margin: 0 auto;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    outline: none;
    border: 2px solid #ff7316;
    color: #ff7316;
    font-weight: 400;
    line-height: 120%;
}
.pageTable-item__profit {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    background: #91fdc9;
    color: #090909;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}
.pageTable-item__btn:hover {
    color: #fff;
    background: #ff7316;
}

.pageTable-item__btn--disabled {
    background-color: #f5f5f5;
    color: #999999;
    cursor: not-allowed;
    pointer-events: none;
    border: 1px solid #e0e0e0;
}
.pageTable-item__coins {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: -12px;
    margin-left: -10px;
}
.pageTable-item__coin {
    margin-left: 10px;
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.pageTable-item__coin img {
    width: 24px;
    height: auto;
    min-width: 24px;
    margin-right: 6px;
}
.pageTable-item__coin-title {
    color: #090909;
    font-size: 12px;
    font-weight: 400;
    line-height: 110%;
    text-align: left;
}
.pageTable-item__coin-text {
    margin-top: 4px;
    color: #676767;
    font-size: 10px;
    font-weight: 400;
    line-height: 110%;
    text-align: left;
}
.pageTable-block:nth-child(4) {
    text-align: right;
}

.pageTable-item:nth-child(even) {
    background: transparent;
}
.pageTable-empty {
    padding: 112px 24px 218px;
    text-align: center;
}
.pageTable-empty img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}
.pageTable-empty p {
    color: #333;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
}
.pageTable-empty span {
    display: block;
    margin-top: 8px;
    color: #676767;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}

.pageTable-wrapper__loader {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 76px 0 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    z-index: 5;
    pointer-events: none;
    text-align: center;
}
.pageTable-wrapper {
    position: relative;
    max-height: 564px;
    overflow: hidden;
}
.pageTable-wrapper__btn {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 32px;
    background: #090909;
    color: #fff;
    user-select: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
}
.pageTable-wrapper.open-wrapper .pageTable-wrapper__loader {
    display: none;
}
.pageTable-wrapper.open-wrapper {
    max-height: none;
}

.pageTable-block__title.block-after {
    cursor: pointer;
}
.pageTable-block__title.block-after.active {
    font-weight: bold;
}
.pageTable-pagination {
    display: none;
    padding: 0 20px;
}

.pageTable-pagination button {
    color: #333333;
    font-weight: bold;
    margin: 0 5px;
    font-size: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e1e1;
}
.pageTable-pagination button.active {
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    border: none;
    justify-content: center;
    background: #ff7316;
    pointer-events: none;
}
.pageTable-pagination {
    align-items: center;
    justify-content: center;
    margin: 24px 0;
}
button.pageTable-pagination__next {
    margin-left: auto;
}
button.pageTable-pagination__prev {
    margin-right: auto;
}
button.pageTable-pagination__next,
button.pageTable-pagination__prev {
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background: #f8f8fa;
    font-size: 0 !important;
    position: relative;
    border: none;
}
.pageTable-pagination__prev::before,
.pageTable-pagination__next::before {
    content: "";
    width: 7px;
    height: 10px;
    background-image: url('data:image/svg+xml,<svg width="7" height="10" viewBox="0 0 7 10" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_2035_1436)"><path d="M2.20697 9.20697L6.20697 5.20697L4.79297 3.79297L0.792969 7.79297L2.20697 9.20697ZM0.792969 2.62097L4.79297 6.62097L6.20697 5.20697L2.20697 1.20697L0.792969 2.62097Z" fill="url(%23paint0_linear_2035_1436)"/></g><defs><linearGradient id="paint0_linear_2035_1436" x1="-2.46003" y1="7.89297" x2="1.63797" y2="-0.87003" gradientUnits="userSpaceOnUse"><stop stop-color="%23FF6A16"/><stop offset="1" stop-color="%23FFA216"/></linearGradient><clipPath id="clip0_2035_1436"><rect width="9" height="6" fill="white" transform="matrix(0 -1 1 0 0.5 9.5)"/></clipPath></defs></svg>');
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.pageTable-pagination__prev::before {
    transform: rotate(180deg);
}
button.pageTable-pagination__prev.pageTable-pagination__disabled,
button.pageTable-pagination__next.pageTable-pagination__disabled {
    pointer-events: none;
}
.pageTable-pagination__prev.pageTable-pagination__disabled::before,
.pageTable-pagination__next.pageTable-pagination__disabled::before {
    filter: brightness(0);
    opacity: 0.4;
}
.pageTable-pagination__prev {
    margin-right: auto;
}

/* Заблокированные элементы (overrides) */
.pageTable-select__item.disabled,
.pageTable-select__label.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.pageTable-select__item.disabled .pageTable-select__title,
.pageTable-select__label.disabled .disabled-text {
    color: #999 !important;
}

.pageTable-select__label input[disabled] {
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .pageTable-select__item.disabled {
        opacity: 0.4 !important;
    }
}

/* Монеты (overrides) */
.pageTable-item__coins {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    align-items: flex-start !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
}

.pageTable-item__coins-second-row {
    display: flex !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 4px !important;
}


@media (max-width: 768px) {
    .pageTable-item__coins {
        gap: 4px !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
    }
    
    .pageTable-item__coins-second-row {
        gap: 4px !important;
        margin-top: 2px !important;
        overflow-x: auto !important;
    }
    
    .pageTable-item__coin {
        flex-shrink: 0 !important;
        min-width: 80px !important;
    }
}

/* Кнопки (overrides) */
@media (max-width: 768px) {
    .pageTable-item__btn {
        min-width: 70px;
        max-width: 70px;
        width: 70px;
        height: 28px;
        font-size: 11px;
        padding: 2px 6px;
    }
}

/* Таблица (overrides для стабильности) */
.pageTable-items {
    width: 100% !important;
    overflow-x: auto !important;
}

.pageTable-item {
    display: flex !important;
    align-items: center !important;
    min-height: 60px !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    flex-wrap: nowrap !important;
}

.pageTable-block {
    flex-shrink: 0 !important;
    padding: 0 5px !important;
    box-sizing: border-box !important;
}

/* Фиксированные размеры блоков (overrides) */
.pageTable-block:nth-child(1) { 
    min-width: 60px; 
    max-width: 60px; 
    padding-right: 5px !important;
} /* Дата */
.pageTable-block:nth-child(2) { 
    min-width: 80px; 
    max-width: 80px; 
    padding-right: 2px !important;
} /* Алгоритм */
.pageTable-block:nth-child(3) { 
    flex: 1; 
    min-width: 185px; 
    padding-right: 20px !important; 
} /* Модель */
.pageTable-block:nth-child(4) { 
    min-width: 195px !important; 
    max-width: 195px !important; 
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-right: 5px !important;
} /* Монеты */
.pageTable-block:nth-child(5) { 
    min-width: 50px; 
    max-width: 50px; 
    padding-right: 2px !important;
} /* Шум */
.pageTable-block:nth-child(6) { 
    min-width: 100px; 
    max-width: 100px; 
    padding-right: 5px !important;
} /* Потребление */
.pageTable-block:nth-child(7) { 
    min-width: 80px; 
    max-width: 120px; 
    flex: 0 0 auto;
    padding-right: 5px !important;
} /* Хешрейт */
.pageTable-block:nth-child(8) { 
    min-width: 80px; 
    max-width: 80px; 
    padding-right: 5px !important;
} /* Прибыль */
.pageTable-block:nth-child(9) { 
    min-width: 70px; 
    max-width: 70px; 
    padding-right: 0 !important;
} /* Кнопка */

/* Адаптив для больших экранов (overrides) */
@media (min-width: 1400px) {
    .pageTable-items {
        max-width: 1400px !important;
        margin: 0 auto !important;
    }
    
    .pageTable-item {
        max-width: 1400px !important;
    }
}

@media (min-width: 1600px) {
    .pageTable-items {
        max-width: 1600px !important;
    }
    
    .pageTable-item {
        max-width: 1600px !important;
    }
}

@media (min-width: 1920px) {
    .pageTable-items {
        max-width: 1800px !important;
    }
    
    .pageTable-item {
        max-width: 1800px !important;
    }
}

/* Лоадер */
.pageTable-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 200px;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background-color: #f3f3f3;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #007cba, #00a8ff);
    border-radius: 2px;
    animation: slide 1.5s ease-in-out infinite;
}

@keyframes slide {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

.loader-text {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pageTable-items:not(.loading) .pageTable-loader {
    display: none;
}

/* Сортировка (overrides) */
.pageTable-block__date {
    cursor: pointer;
}

.pageTable-block:nth-child(7) .pageTable-block__title.block-after::after,
.pageTable-block:nth-child(8) .pageTable-block__title.block-after::after {
    display: none !important;
}

.pageTable-block:nth-child(7) .pageTable-item__box {
    white-space: nowrap;
    min-width: fit-content;
}

.pageTable-block:nth-child(7) .pageTable-item__text {
    white-space: nowrap;
    overflow: visible;
}

.pageTable-item:hover .pageTable-block:nth-child(4) {
    max-width: 175px !important;
    transition: max-width 0.3s ease;
}

.pageTable-item:hover .pageTable-block:nth-child(7) {
    max-width: 140px !important;
    transition: max-width 0.3s ease;
}

/* Прибыль (overrides) */
.pageTable-item__profit.block-red {
    background-color: #ffebee !important;
    color: #d32f2f !important;
    border: 1px solid #ffcdd2 !important;
    border-radius: 23px !important;
    padding: 4px 8px !important;
    font-weight: bold !important;
}

.pageTable-item__profit.block-orange {
    background-color: #fff3e0 !important;
    color: #f57c00 !important;
    border: 1px solid #ffcc02 !important;
    border-radius: 23px !important;
    padding: 4px 8px !important;
    font-weight: bold !important;
}

.pageTable-item__profit.block-green {
    background-color: #e8f5e8 !important;
    color: #2e7d32 !important;
    border: 1px solid #c8e6c9 !important;
    border-radius: 23px !important;
    padding: 4px 8px !important;
    font-weight: bold !important;
}

@media (max-width: 1350px) {
    .pageTable-price {
        margin: 0 auto;
    }
    .pageTable-days {
        margin-right: auto;
    }
    .pageTable-days {
        display: block;
    }
    .pageTable-days__title {
        margin-bottom: 8px;
    }
    .pageTable-days__list {
        padding-left: 0;
    }
    .pageTable-days__label:first-child {
        margin-left: 0;
    }
    .pageTable-price {
        display: block;
    }
    .pageTable-top {
        align-items: flex-end;
    }
    .pageTable-block:nth-child(1),
    .pageTable-block:nth-child(4) {
        display: none;
    }
    .pageTable-block:nth-child(3) {
        width: auto;
        flex-grow: 1;
    }
}
@media (max-width: 1100px) {
    .pageTable-search {
        width: 180px;
    }
}
@media (max-width: 992px) {
    .mainProfit-title {
        font-size: 40px;
    }
    .pageTable-empty {
        padding: 112px 16px 202px;
    }
    .mainProfit-wrapper {
        background-image: url("../img/profit/bg-tablet.png");
    }
    .bottomProfit-desktop {
        display: none;
    }
    .bottomProfit-ul {
        margin: 16px 0 0 0;
    }
    .bottomProfit-block {
        width: 100%;
    }
    .bottomProfit-list {
        display: block;
    }
    .bottomProfit-right {
        padding-top: 20px;
    }
    .bottomProfit-title {
        font-size: 36px;
        line-height: 120%;
    }
    .bottomProfit {
        padding: 80px 0;
    }
    .factsProfit {
        padding-bottom: 80px;
    }
    .factsProfit-block {
        width: 100%;
    }
    .factsProfit-block:last-child {
        margin-top: 20px;
    }
    .pageTable-top {
        flex-wrap: wrap;
    }
    .pageTable-search {
        width: 323px;
    }
    .pageTable-price {
        display: flex;
        align-items: center;
        margin-right: 0;
    }
    .pageTable-days {
        margin-top: 16px;
    }
    .pageTable-price .pageTable-days__title {
        margin: 0 12px 0 0;
    }
    .pageTable-block:nth-child(5),
    .pageTable-block:nth-child(9) {
        display: none;
    }
    .pageTable-block:nth-child(8) {
        margin-right: 15px;
    }
}

@media (max-width: 767px) {
    .mainProfit-title {
        font-size: 24px;
    }
    .mainProfit-subtitle {
        font-size: 13px;
        line-height: 140%;
    }
    .mainProfit-wrapper {
        padding: 34px 11px 39px;
    }
    .mainProfit-updated {
        bottom: 12px;
        left: 12px;
        font-size: 12px;
    }
    .factsProfit-title {
        font-size: 28px;
    }
    .factsProfit-text {
        font-size: 14px;
        line-height: 160%;
    }
    .factsProfit .bottomProfit-ul {
        margin: 0;
        padding: 0;
        display: block;
    }
    .factsProfit .bottomProfit-ul li {
        margin: 12px 0 0 0;
        width: 100%;
    }
    .factsProfit .bottomProfit-ul li:first-child {
        margin: 12px 0 0 0;
    }
    .pageTable-search {
        width: calc(100% - 350px);
    }
    .pageTable-search__input {
        font-size: 12px;
        height: 34px;
    }
    .pageTable-search svg {
        left: 5px;
        top: 5px;
    }
    .pageTable-days__label span {
        height: 34px;
        padding: 0 9px;
        font-size: 12px;
    }
    .pageTable-days__label {
        margin-left: 0;
        margin-right: 4px;
    }
    .pageTable-select__title {
        padding: 0 9px;
        height: 34px;
        font-size: 12px;
    }
    .pageTable-block {
        display: none !important;
    }
    .pageTable-block:nth-child(8),
    .pageTable-block:nth-child(3) {
        display: block !important;
    }
    .pageTable-block {
        margin-right: 8px;
    }
    .pageTable-block:nth-child(8) {
        margin-right: 0;
    }
    .pageTable-empty {
        padding: 112px 12px 178px;
    }
    .pageTable-empty {
        font-size: 16px;
        line-height: 140%;
    }
    .pageTable-empty span {
        font-size: 12px;
        line-height: 120%;
        margin-top: 8px;
    }
}

@media (max-width: 576px) {
    .mainProfit-wrapper {
        background-image: url("../img/profit/bg-mobile.png");
    }
    .mainProfit-updated {
        bottom: 8px;
        left: 8px;
        font-size: 11px;
        max-width: calc(100% - 16px);
        word-wrap: break-word;
    }
    .pageTable-pagination button {
        width: auto;
        height: auto;
        border: none;
        font-size: 14px;
    }
    .pageTable-pagination button.active {
        width: 24px;
        height: 24px;
    }
    button.pageTable-pagination__next,
    button.pageTable-pagination__prev {
        width: 24px;
        height: 24px;
    }
    .pageTable-pagination {
        margin: 16px 0;
        padding: 0 12px;
    }
    .factsProfit {
        padding-bottom: 64px;
    }
    .bottomProfit {
        padding: 64px 0;
    }
    .bottomProfit-title {
        font-size: 32px;
    }
    .bottomProfit-subtitle {
        font-size: 16px;
        line-height: 140%;
    }
    .bottomProfit-text {
        font-size: 14px;
        line-height: 160%;
    }
    .bottomProfit-ul li {
        font-size: 12px;
        line-height: 120%;
    }
    .pageTable-selects {
        order: -1;
        width: calc(50% - 6px);
    }
    .pageTable-select:first-child {
        display: none;
    }
    .pageTable-select {
        margin: 0;
        width: 100%;
    }
    .pageTable-select__title {
        justify-content: space-between;
    }
    .pageTable-search {
        order: -2;
        margin: 0 auto 0 0;
        width: calc(50% - 6px);
    }
    .pageTable-price {
        display: block;
        margin: 0;
        order: 1;
    }
    .pageTable-days__title svg {
        display: none;
    }
    .pageTable-price__wrapper {
        margin: 0;
        width: 100%;
        padding-right: 3px;
    }
    .pageTable-days__title {
        font-size: 12px;
        margin: 0 0 8px;
    }
    .pageTable-price .pageTable-price__text {
        margin: 0 auto;
    }
    .pageTable-price__input {
        width: 56px;
        min-width: 56px;
    }
    .pageTable-price .pageTable-days__title {
        margin: 0 0 8px 0;
    }
}

@media (max-width: 370px) {
    .pageTable-price {
        width: calc(50% - 6px);
    }
    .pageTable-days__label span {
        font-size: 10px;
        padding: 0 7px;
    }
    .pageTable-select__title {
        font-size: 10px;
    }
    .pageTable-price .pageTable-price__text,
    .pageTable-search__input {
        font-size: 10px;
    }
}