.ti-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.ti-controls .ti-refresh {
  background: #2563eb;       /* blu principale */
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.ti-controls .ti-refresh:hover {
  background: #1d4ed8;
  transform: scale(1.04);
}

.ti-controls .ti-refresh:active {
  transform: scale(0.98);
}