/* Container du chronomètre */
.chronometer-container {
    position: relative;
    margin: 10px auto;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Animation spinner circulaire */
.spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chronomètre au centre */
.chronometer {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
    font-family: 'Courier New', monospace;
    z-index: 1;
}

.chronometer span {
    display: inline-block;
    min-width: 30px;
}

.info-text {
    color: #666;
    font-size: 14px;
    margin-top: 20px;
}