html, body {
    overflow-y: auto !important;
    height: auto !important;
}        

/* Специфичные стили для страницы фандинга */
.funding-container { margin: 0 auto; padding: 20px 15px 50px 15px; }

/* Цвета */
.text-subtle { color: #8b92a5; } /* Замена text-muted для второстепенного текста */
.text-light-f { color: #e5e7eb; font-weight: 500; } /* Светлый текст для основных данных */
.text-green { color: #26a69a !important; font-weight: 600; }
.text-red { color: #ef5350 !important; font-weight: 600; }

.header-panel { background-color: #0b0d12; border: 1px solid #1f2933; border-radius: 12px; padding: 20px; margin-bottom: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 15px; }
.countdown-box { background-color: #111827; border: 1px solid #1f2933; border-radius: 8px; padding: 10px 20px; text-align: center; min-width: 160px; }
.countdown-time { font-size: 22px; font-weight: bold; color: #86ab2c; font-family: monospace; letter-spacing: 1px; line-height: 1.2; }

.exch-btn { background-color: #111827; border: 1px solid #1f2933; color: #d1d5db; padding: 8px 20px; font-weight: 500; border-radius: 6px; transition: 0.2s; cursor: pointer; }
.exch-btn.active { background-color: #86ab2c; border-color: #86ab2c; color: #fff; }
.exch-btn:hover:not(.active) { background-color: #1f2933; color: #fff; }

.funding-table-wrap { background-color: #0b0d12; border: 1px solid #1f2933; border-radius: 12px; overflow: hidden; }
.table-custom { margin-bottom: 0; font-size: 13.5px; width: 100%; border-collapse: collapse; }
.table-custom thead th { background-color: #111827; border-bottom: 1px solid #1f2933; color: #8b92a5; font-weight: 600; padding: 14px 15px; cursor: pointer; white-space: nowrap; user-select: none; transition: background-color 0.2s; }
.table-custom thead th:hover { background-color: #1a2235; color: #e5e7eb; }
.table-custom tbody td { border-bottom: 1px solid #1f2933; padding: 14px 15px; vertical-align: middle; background-color: transparent; }
.table-custom tbody tr:hover td { background-color: #111827; }

/* Иконки сортировки */
.sort-icon { display: inline-block; width: 10px; margin-left: 5px; opacity: 0.3; font-size: 10px; }
.sort-asc .sort-icon::before { content: '▲'; opacity: 1; color: #86ab2c; }
.sort-desc .sort-icon::before { content: '▼'; opacity: 1; color: #86ab2c; }

.ticker-link-f { color: #fff; font-weight: bold; text-decoration: none; font-size: 14px; transition: 0.2s; }
.ticker-link-f:hover { color: #86ab2c; }

.pagination-custom { display: flex; list-style: none; padding: 0; margin: 25px 0 0 0; justify-content: center; gap: 6px; }
.page-item-c { background-color: #111827; border: 1px solid #1f2933; color: #d1d5db; padding: 6px 14px; border-radius: 6px; cursor: pointer; transition: 0.2s; font-size: 13px; font-weight: 500; user-select: none; }
.page-item-c.active { background-color: #86ab2c; border-color: #86ab2c; color: #fff; }
.page-item-c:hover:not(.active):not(.disabled) { background-color: #1f2933; color: #fff; }
.page-item-c.disabled { opacity: 0.4; cursor: not-allowed; }

.search-input {
    background-color: #111827; border: 1px solid #1f2933; color: #fff;
    padding: 8px 15px; border-radius: 6px; outline: none; transition: 0.2s; font-size: 14px;
    width: 100%; max-width: 200px;
}
.search-input:focus { border-color: #86ab2c; }  

@media (min-width: 768px) {
    .search-input { width: 280px; max-width: 280px; } 
}

@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
    .header-panel { justify-content: center; text-align: center; }
}           

#loader { text-align: center; padding: 50px; color: #86ab2c; display: none; font-weight: 500; }