.marquee-wrapper {
  display: flex;
  align-items: center;
  background: #003366;
  margin-bottom: .5rem;
  gap: .5rem;
  padding: .5rem;
}

.pause-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  padding: .25rem .5rem;
  font-size: .85rem;
  border-radius: 3px;
  line-height: 1;
}

.pause-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.tax-marquee {
  display: block;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.tax-marquee:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.scroll-text {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-text {
    animation: none !important;
    transform: none !important;
    transition: none !important;
    white-space: normal;
  }

  .pause-btn {
    display: none;
  }
}