/* Additional high-contrast improvements for audience table */
.contacts-table {
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
}

.contacts-table table {
  border-collapse: separate;
  border-spacing: 0;
}

/* First row cells in table body */
.contacts-table tbody tr:first-child td {
  border-top: none;
}

/* Add border between columns */
.contacts-table th, .contacts-table td {
  border-right: 1px solid #e5e7eb;
}

.contacts-table th:last-child, .contacts-table td:last-child {
  border-right: none;
}

/* Make all text in the table darker */
.contacts-table th,
.contacts-table td {
  color: #111827 !important;
}

/* Bold table headers */
.contacts-table th {
  font-weight: 700 !important;
  font-size: 14px !important;
}

/* Fix for no hover on mobile */
@media (hover: none) {
  .contacts-table tr:hover {
    background-color: inherit;
  }
}