.wac-newsletter-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Georgia", serif;
  /* matches the elegant look */
}

.wac-newsletter-table thead th {
  background-color: #0a2f62;
  /* dark navy blue */
  color: #fff;
  padding: 14px 12px;
  font-size: 18px;
  text-align: left;
  border: none;
}

.wac-newsletter-table tbody td {
  padding: 18px 12px;
  font-size: 16px;
  border-bottom: 1px solid #dcdcdc;
}

/* Center align first column */
.wac-newsletter-table tbody td:first-child {
  text-align: start;
}

.wac-newsletter-table tbody tr:hover {
  background-color: #f5f7fb;
}

.wac-newsletter-table a {
  display: inline-block;
  background: #153772;
  border: 1px solid #153772;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s ease;
  font-size: 14px;
  transition: all 0.5s ease;
  font-family: Inter, sans-serif !important;

  &:focus,
  &:active {
    color: #fff !important;
    outline: none;
  }

  @media (max-width: 1199.98px) {
    min-width: 125px;
    padding: 10px 8px;

    &:hover {
      color: #FFF !important;
    }
  }
}

@media (hover: hover) {
  .wac-newsletter-table a:hover {
    background-color: #000;
    border-color: #000;
  }

}

/* Focus (only when keyboard navigation) */
.wac-newsletter-table a:focus {
  color: #fff !important;
  outline: none;
}

/* Better: only apply focus when visible (modern fix) */
.wac-newsletter-table a:focus-visible {
  color: #fff;
  outline: none;
}