/* Declare the font to make it tidy*/
* {
  font-size: 14px;
}

/*General table cleanup*/
table {
  border-collapse: collapse;
  width: 100%;
  font-family: system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 1rem;
}

/*Header row*/
thead {
  border-bottom: 2px solid #333;
}
thead td {
  font-weight: bold;
  background-color: #f4f4f4;
}

/* Rows */
tbody tr:nth-child(even) {
  background-color: #f1f1f1; /*Stripes*/
}
tbody tr:hover {
  background-color: #eef; /*Highlight row on hover*/
}

/*Cellstyle*/
td {
  padding: 8px 12px;
  border: none;
  vertical-align: top;
}

/* Alignment utilities */
td.center,
th.center {
  text-align: center;
}

td.left,
th.left {
  text-align: left;
}

td.right,
th.right {
  text-align: right;
}
/* End of Table Edit */

.filter-items-display {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Enrollment and Credit arrows align */
.enroll-div a,
.credit-div a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #000000;
}

.icon-span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon-span i {
  font-size: 11px;
  line-height: 1;
}

.inactive-color {
  color: #000000;
}

.active-color {
  color: #f5660f;
}
