.file-stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.file-stats-box {
    width: calc(33.33% - 20px);
    border: 1px solid #ff0000;
    text-align: center;
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    white-space: nowrap; /* Impedisce il wrap del testo */
    overflow: hidden; /* Nasconde il testo in eccesso */
    text-overflow: ellipsis; /* Aggiunge i puntini di sospensione se il testo è troppo lungo */
}

.label {
    font-size: 14px;
    color: #777;
}