/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 31 de jul. 2026, 12:18:59
    Author     : oriol
*/

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Espai entre els elements */
    font-family: Arial, sans-serif;
}

.countdown-unit {
    background-color: #f0f0f0; /* Color de fons grisó */
    border-radius: 8px; /* Cantonades arrodonides */
    padding: 15px; /* Espai interior */
    text-align: center; /* Centrar text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Ombratge lleuger */
}

.countdown-value {
    font-size: 2.5rem; /* Valor numèric una mica més petit */
    font-weight: bold; /* Fer el text més gruixut */
}

.countdown-label {
    font-size: 0.85rem; /* Tamany més petit per a les unitats */
    color: #666; /* Color gris fosc per a les unitats */
}
