.contatori-part {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.contatore-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 2rem;
}

.contatore-valore {
    font-size: clamp(1.2rem, 2vw, 2.4rem);
    font-weight: 700;
    color: #333333;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    min-height: 2.9rem;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contatore-icona-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #0a7cb4;
    border: 1px solid #00468d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.contatore-icona-wrapper .icon {
    fill: #ffffff;
    width: 32px;
    height: 32px;
}

.contatore-label {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    max-width: 160px;
}

.contatore-delta {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    min-height: 1.4rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
}

.delta-positivo {
    color: #1a7a3c;
    background-color: #e6f4ec;
    border: 1px solid #a8d5b5;
}

.delta-negativo {
    color: #c0392b;
    background-color: #fdecea;
    border: 1px solid #f5b7b1;
}

.delta-neutro {
    color: #666;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
}