.refresh-report-button {
  min-height: 40px;
  padding: 0 16px;
  white-space: nowrap;
  font-size: .82rem;
  box-shadow: 0 6px 14px #0f687426;
}

.refresh-report-button__icon {
  margin-right: 7px;
  font-size: 1.15em;
  line-height: 1;
}

.refresh-report-button[aria-busy="true"] .refresh-report-button__icon {
  animation: refresh-report-spin .8s linear infinite;
}

.feature-copy > .feedback-link {
  display: flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  margin-top: 12px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--foam);
  color: var(--river-dark);
  text-decoration: none;
}

.feature-copy > .feedback-link:hover {
  background: var(--wash);
  color: var(--river-dark);
}

@keyframes refresh-report-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .refresh-report-button[aria-busy="true"] .refresh-report-button__icon {
    animation: none;
  }
}

@media (width <= 660px) {
  .topbar {
    flex-wrap: wrap;
  }

  .refresh-report-button {
    order: 3;
    width: 100%;
  }
}
