.top-coins-page .top-coins-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #f9fafb;
    color: #4b5563;
    font-size: 13px;
}

.top-coins-page .top-coins-subtitle svg {
    width: 14px;
    height: 14px;
    fill: #f59e0b;
    flex-shrink: 0;
}

.top-coins-page .top-coins-chart-panel {
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
}

.top-coins-page .top-coins-chart-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.top-coins-page .top-coins-chart-tab {
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #f3f4f6;
    color: #374151;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.top-coins-page .top-coins-chart-tab:hover {
    background: #e5e7eb;
}

.top-coins-page .top-coins-chart-tab.active {
    background: #fff;
    border-color: #9ca3af;
    color: #111827;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.top-coins-page .top-coins-chart {
    width: 100%;
    height: 360px;
}

.top-coins-page .top-coins-chart__canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.top-coins-page .top-coins-table table {
    min-width: 1280px;
}

.top-coins-page .top-coin-trade-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 72px;
}

.top-coins-page .top-coin-trade-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #fff;
    color: #374151;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.2s;
}

.top-coins-page .top-coin-trade-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
}

@media (max-width: 950px) {
    .top-coins-page .top-coins-chart {
        height: 280px;
    }
}
