/* Componente Testo Troncato */
.truncated-text-wrapper {
    transition: background-color 0.2s;
    border-radius: 4px;
    padding: 2px;
}

.truncated-text-wrapper:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.truncated-text-content {
    /* Line clamping is handled via inline styles in the helper for flexibility, 
       but we can add shared styles here if needed. */
}

.truncated-text-wrapper i {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.truncated-text-wrapper:hover i {
    opacity: 1;
}
