
  .open-tally {
    color: #1b1b1b;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
  }

  .open-tally .arrow {
    margin-left: 6px;
    transition: transform 0.3s ease;
  }

  .open-tally:hover {
    color: #0071f3; /* cambia colore all'hover (puoi modificarlo) */
  }

  .open-tally:hover .arrow {
    transform: translateX(4px); /* sposta la freccia */
  }
