/**
 * تابلو قیمت نقره — استایل‌های داینامیک
 */

/* flash وقتی قیمت تغییر میکنه */
.nh-price-flash {
    animation: nh-price-flash 1.5s ease;
}

@keyframes nh-price-flash {
    0%   { background-color: transparent; }
    25%  { background-color: rgba(178, 155, 107, 0.45); } /* secondary-500 */
    100% { background-color: transparent; }
}

/* indicator خطای اتصال */
#nh-price-board-error {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #c0392b;
    color: #fff;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
