/**
 * Simple Inline Auction Countdown Styles
 */

.auction-time-simple {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 6px 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin: 5px 0;
}

.auction-time-simple i {
    margin-right: 5px;
    color: #fd7e14;
}

.auction-time-simple.future i {
    color: #20c997;
}

.countdown-timer {
    font-weight: 700;
    margin-left: 5px;
    color: #343a40;
}

/* Urgent countdown styling (less than 5 minutes) */
.countdown-timer.urgent {
    color: #dc3545;
    animation: pulse 1s infinite;
}

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

/* Responsive styles */
@media (max-width: 576px) {
    .auction-time-simple {
        font-size: 12px;
        padding: 4px 8px;
    }
}

.auction-time-simple {
    padding: 1px 11px!important;
    text-align: center;
    margin-bottom: 10px;
}