  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

.radius-md {
  /* width math: (100% - total row gap) / columns */
  border-radius: var(--radius-md);
}

.radius-lrg {
  /* width math: (100% - total row gap) / columns */
  border-radius: var(--radius-lg);
}
/* Text in hovered table rows */
table.table-hover tbody tr:hover td,
table.table-hover tbody tr:hover th {
  color: #ffffff !important;
}

/* Links inside hovered rows */
table.table-hover tbody tr:hover td a,
table.table-hover tbody tr:hover th a {
  color: #ffffff !important;
}