/**
 * Accessibility CSS for Virgin Media Television Helplines
 * 
 * This file contains styles to maintain visual consistency while improving accessibility
 */

/* Link styling - ensures links are distinguishable without relying on color */
#content_holder a {
  text-decoration: none;
  font-weight: 300;
  border-bottom: 1px dotted #000;
  padding-bottom: 1px;
}

#content_holder a:hover,
#content_holder a:focus {
  text-decoration: none;
}

/* Screen reader only class - visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
