/* Custom styling for team links on fixture pages */
/* Uses white with underlines for better visibility on dark grey backgrounds */

.fixture-team-link {
  color: white;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 2px;
}

.fixture-team-link:hover {
  color: white;
  text-decoration-color: white;
  text-decoration-thickness: 2px;
}

.fixture-team-current {
  color: var(--clr-primary-a40);
  font-weight: 700;
}