.user-api-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  font-family: sans-serif;
  font-size: 14px;
  border-radius: 8px;
  overflow: hidden;
}

.user-api-table tr:nth-child(even) {
  background-color: #f9f9f9f5;
}

/* Keep image column (first column) white on all rows */
.user-api-table tr:nth-child(even) td:first-child {
  background-color: #fff;
}

/* Make links clearly clickable and accessible */
.user-api-table td a {
  color: #bc262ba4;
  text-decoration: underline;
  font-weight: 600;
}

/* Name cells without URL */
.user-api-table td .no-url {
  color: #bc262ba4;
  text-decoration: none;
}

.user-api-table td a:hover,
.user-api-table td a:focus {
  color: #bc262b;
  text-decoration-thickness: 2px;
  outline: none;
}

