/* Subastas Plus - Estilos básicos */

/* Contenedor de notificaciones */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 350px;
}

.subastas-notification {
    background: #fff;
    border-left: 4px solid #2196F3;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-success {
    border-left-color: #4CAF50;
}

.notification-info {
    border-left-color: #2196F3;
}

.notification-warning {
    border-left-color: #FF9800;
}

.notification-error {
    border-left-color: #F44336;
}

.notification-close {
    cursor: pointer;
    font-size: 20px;
    margin-left: 10px;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
}

/* Items de subasta en página Lives */
.auction-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.auction-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.auction-item.auction-closed {
    opacity: 0.7;
    background: #f8f8f8;
}

.auction-item .current-price {
    font-size: 24px;
    font-weight: bold;
    color: #2196F3;
}

.auction-item .current-price.new-bid-highlight {
    color: #4CAF50;
    animation: pulse 1s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Lista de pujas */
.bids-list, .auction-bids {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
}

.bid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bid-item:last-child {
    border-bottom: none;
}

.bid-user {
    font-weight: 500;
    color: #333;
}

.bid-amount {
    font-weight: bold;
    color: #2196F3;
}

.bid-date {
    font-size: 12px;
    color: #777;
}

.auto-bid-badge {
    background: #FF9800;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
}

/* Indicadores de estado */
.auction-status {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.status-active {
    background: #4CAF50;
    color: white;
}

.status-closed {
    background: #9E9E9E;
    color: white;
}

.status-upcoming {
    background: #2196F3;
    color: white;
}

/* Contadores */
.auction-counters {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.counter-item {
    flex: 1;
}

.counter-value {
    font-size: 28px;
    font-weight: bold;
    color: #2196F3;
}

.counter-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .auction-counters {
        flex-direction: column;
    }
    
    .counter-item {
        margin-bottom: 15px;
    }
    
    .bid-item {
        flex-direction: row;
        align-items: flex-start;
        align-items: center;
    }
    
    .bid-user, .bid-amount, .bid-date {
        margin-bottom: 5px;
    }
}