/* PricePro — Price Change Indicators */
.pp-up {
    color: #0b8306;
}

.pp-down {
    color: #ef4444;
}

.pp-stable {
    color: #9ca3af;
}

/* ── Flex container: centers ALL children vertically ── */
.pp-up,
.pp-down,
.pp-stable {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ── Arrow: webp image ── */
.pp-arrow img {
    width: 13px;
    height: 13px;
    vertical-align: middle;
}

/* ── Individual elements (inherit color from parent automatically) ── */
.pp-direction {}

.pp-amount {}

.pp-field {}

.pp-diff {}

.pp-value {
    font-weight: 600;
}