/* ETH Value Display Component
   Unified system for displaying ETH currency values
   Provides light and dark background variants
*/

/* Base ETH Value - Light Backgrounds */
.eth-value {
    font-family: var(--font-family-mono);
    font-weight: var(--font-weight-medium);
    color: var(--color-accent);
}

/* ETH Value - Dark Backgrounds */
.eth-value-light {
    font-family: var(--font-family-mono);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.95);
}

/* Context-specific size variants (if needed) */
.eth-value-sm {
    font-size: var(--font-size-sm);
}

.eth-value-lg {
    font-size: var(--font-size-lg);
}
