/**
 * CSS for Balance Hook animations and styling
 */

/* Pulse animation for balance updates */
.pulse-animation {
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Token holdings dropdown styling */
#tokenHoldings1 option {
    padding: 8px 12px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 12px;
}

/* Loading state styling */
#ethbalance.loading {
    opacity: 0.6;
    font-style: italic;
}

/* Error state styling */
#ethbalance.error {
    color: #dc3545;
    font-style: italic;
}
