/* Table-style contacts layout for audience preview */
.contacts-table {
  width: 100%;
  overflow-x: auto;
}

.contacts-table table {
  width: 100%;
  border-collapse: collapse;
}

.contacts-table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 700;
  color: #111827;
  background-color: #f3f4f6;
  border-bottom: 1px solid #d1d5db;
}

.contacts-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #e5e7eb;
  color: #111827;
}

.contacts-table tr:last-child td {
  border-bottom: none;
}

.contacts-table tr:nth-child(even) {
  background-color: #f9fafb;
}

.contacts-table tr:hover {
  background-color: #f3f4f6;
}

.preview-more td {
  text-align: center;
  font-style: italic;
  color: #4b5563;
  background-color: #f3f4f6;
  padding: 10px;
  font-weight: 500;
}

/* Move stats to the top with more prominence */
.preview-stats {
  padding: 12px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #4f46e5;
  text-align: center;
}

.preview-stats strong {
  font-weight: 700;
  font-size: 16px;
}