#exam-centers {
  background-image: url("/assets/images/backgrounds/bg-exam-centers.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  color: #fff;
}

@supports (
  background-image: url("/assets/images/backgrounds/bg-exam-centers.webp")
) {
  #exam-centers {
    background-image: url("/assets/images/backgrounds/bg-exam-centers.webp");
  }
}

#exam-centers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

.exam-center-link {
  padding: 0.75rem 1rem;
  font-weight: 500;
  border: 4px solid var(--white);
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-style: italic;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -moz-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
  user-select: none !important;
  outline: none !important;
}

.exam-center-link:active,
.exam-center-link:focus,
.exam-center-link:focus-visible,
.exam-center-link:focus-within {
  background-color: var(--color-primary) !important;
  color: var(--white) !important;
  border-color: var(--color-primary) !important;
}

@media (hover: hover) {
  .exam-center-link:hover {
    background-color: var(--color-primary);
    color: var(--white);
  }
}
