/**
 * 🎨 BID UPDATE VISUAL STYLES
 * Add visual feedback for bid updates
 */

/* Bid update animation */
.bid-updated {
    animation: bid-flash 1s ease-in-out;
}

@keyframes bid-flash {
    0% { 
        background-color: rgba(34, 197, 94, 0.1); /* green-500 with opacity */
        transform: scale(1.05);
    }
    50% { 
        background-color: rgba(34, 197, 94, 0.2);
        transform: scale(1.1);
    }
    100% { 
        background-color: transparent;
        transform: scale(1);
    }
}

/* New bid highlight */
.bid-highlight {
    color: #22c55e !important; /* green-500 */
    font-weight: 900 !important;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* Pulse animation for recent updates */
.bid-pulse {
    animation: bid-pulse 2s infinite;
}

@keyframes bid-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Bid amount container */
.bid-amount {
    transition: all 0.3s ease;
}

.bid-amount:hover {
    transform: scale(1.05);
}

/* Success indicator */
.bid-success {
    position: relative;
}

.bid-success::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    color: #22c55e;
    font-size: 12px;
    font-weight: bold;
    background: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}