/* =====================================================
   Dataroma Grand Portfolio 板块 - 复用 hot-stocks.css 的暗色变量与外壳
   仅补充本页特有样式
   ===================================================== */

.dr-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    margin-bottom: 12px;
}

.dr-toolbar .dr-toolbar-label {
    color: var(--text-secondary);
    font-size: 13px;
}

.dr-toolbar .dr-spacer { flex: 1; }

.dr-source-hint {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.dr-source-hint a { color: var(--accent); text-decoration: none; }

.dr-symbol { font-weight: 700; color: var(--accent); }
.dr-name { color: var(--text-secondary); font-size: 12px; }

.dr-pos { color: var(--profit); }
.dr-neg { color: var(--loss); }
.dr-muted { color: var(--text-muted); }

/* 距52周低点条 */
.dr-low-bar-track {
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 4px;
}
.dr-low-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dim), var(--accent));
}

/* 无权限空状态（参照 my-tools） */
.dr-forbidden {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
    color: var(--text-muted);
}
.dr-forbidden i { font-size: 64px; margin-bottom: 16px; color: var(--text-muted); }
.dr-forbidden .dr-forbidden-text { font-size: 16px; }

.dr-pagination {
    margin-top: 12px;
    display: flex;
    justify-content: flex-end;
}

/* 候选标记 */
.dr-rank-badge {
    display: inline-block;
    min-width: 22px;
    text-align: center;
    font-weight: 700;
}
.dr-rank-badge.top3 { color: var(--profit); }
