.compteur-temps-container {    
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: transparent;
}

.compteur-temps-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.compteur-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.compteur-box {
    background-color: #FFFFFF;
    border-radius: 12px;
    width: 45px;
    height: 40px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.compteur-nombre {
    font-size: var(--taille-texte, 48px);
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.compteur-label {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    white-space: nowrap;
}

.compteur-separator {
    font-size: var(--taille-texte, 48px);
    font-weight: 700;
    color: #000000;
    line-height: 1;
    align-self: center;
    display: flex;
    align-items: center;
    height: 50px;
    margin-bottom: 30px;
}

