/* STYLE POUR LE CHRONOMETRE */
.compact-countdown {
    display: flex;
    align-items: center;
    justify-content: start !important;
    white-space: nowrap;
    flex-wrap: nowrap;
    width: 100%;
    font-size: 12px;
    color: #333;
    margin-top: 5px;
    margin-left: 0 !important;
}

.countdown-unit {
    background-color: rgba(255, 102, 0, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
    display: block;
    align-items: center;
    font-weight: 600;
    width: 100%;
}

.countdown-unit .days,
.countdown-unit .hours,
.countdown-unit .minutes,
.countdown-unit .seconds {
    font-weight: 700;
    margin-right: 2px;
    color: #ff6600;
}



/* STYLE POUR LE CONTENEUR "RAPIDE ! " */
.ribbon-badge {
    position: absolute;
    top: 15px;
    right: -50px;
    transform: rotate(45deg);
    background: #ff6600;
    color: white;
    padding: 10px 45px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
    border-radius: 2px;
    pointer-events: none; /* Pour ne pas interférer avec le clic du parent */
}