/* Table */
/* Ensures the table wrapper clips content */

/* Table general */
#fieldList {
  border-collapse: separate; /* Required to see border-radius */
  border-spacing: 0;
  width: 100%;
  overflow: hidden;
}

table#fieldList {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
}

/* Table header */
#fieldList thead {
  background: #F8F7FA;
  height: 60px;
  border-radius: 10px;
  vertical-align: middle;
}

/* Text styles */
table#fieldList th,
table#fieldList th a,
table#fieldList td a {
  text-transform: capitalize;
  color: #666666;
}

/* Force all rows to have a white background */
#fieldList tbody tr:nth-child(odd),
#fieldList tbody tr:nth-child(even) {
  background-color: #ffffff !important;
}

/* Optional Bootstrap override (can be removed if unused) */
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: rgb(255 255 255 / 5%);
  color: var(--bs-table-striped-color);
}

/* Table footer */
#fieldList tfoot {
  background: #fff;
}
