/**
 * Styles for the auction status badge
 */

.vicino-auction-status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 5px 0;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vicino-status-not-started {
    background-color: #6c757d; /* Gris */
}

.vicino-status-active {
    background-color: #28a745; /* Verde - SUBASTA INICIADA */
}

.vicino-status-has-bids {
    background-color: #dc3545; /* Rojo - OFERTADO */
}

.vicino-status-finished {
    background-color: #6c757d; /* Gris */
}

.vicino-auction-status-badge .status-icon {
    margin-right: 5px;
}

/* Ensure visibility in excerpts */
.post-excerpt .vicino-auction-status-badge,
.excerpt .vicino-auction-status-badge {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}