/* Credits Display Styles - user-info moved to header.css */

/* Credits display moved to header.css */

/* Hover effects moved to header.css */

.credits-icon {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

#userCredits {
    min-width: 20px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .credits-display {
        padding: 4px 8px;
        font-size: 12px;
        gap: 4px;
    }
    
    .credits-icon {
        font-size: 14px;
    }
}

/* Animation for credit updates */
@keyframes creditUpdate {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.credits-display.updating {
    animation: creditUpdate 0.5s ease-in-out;
}

/* Removed credit alert styles - using fixed color only */
