.cards-wrapper {
  max-height: 50vH;
  justify-content: space-evenly;
}
.cards-wrapper .card {
  max-height: 100%;
  max-width: 50%;
}
.cards-wrapper .card .card-body {
  overflow: auto;
}
.card.notifications-card {
  border: 2px solid var(--fux-yellow);
  color: var(--font);
}
.card.notifications-card .card-header {
  background: var(--fux-yellow);
  color: var(--fux-dark);
  justify-content: center;
}
.card.notifications-card .card-body {
  padding: 24px;
  gap: 24px;
}
.card .notification-card {
  background: var(--yellow-light);
  border: 2px solid var(--fux-yellow);
  color: var(--fux-dark);
  box-shadow: none;
  width: 100%;
  max-width: 100%;
}
.card .notification-card .card-header {
  background: var(--yellow-light);
  color: var(--fux-dark);
  border-top-left-radius: 21px;
  border-top-right-radius: 21px;
  padding: 24px 16px 8px 16px;
  align-items: center;
}
.card .notification-card .card-header span {
  font-weight: 500;
}
.card .notification-card .card-header b {
  font-size: 24px;
}
.card .notification-card.notification-unread {
  border-color: var(--fux-dark);
  border-width: 3px;
  background: #fff;
}
.card .notification-card.notification-unread .card-header {
  background: #fff;
}
.card .notification-card .card-header .bi {
  font-size: 18px;
  flex-shrink: 0;
}
.card .notification-card.notification-unread .card-header .bi {
  color: var(--fux-red);
}
.notification-meta .badge {
  font-size: 12px;
  font-weight: 500;
}
.card.notification-card .card-body,
.card .notification-card .card-body {
  padding: 8px 16px 24px 16px;
  font-size: 18px;
  font-weight: 100;
}
table td {
    text-align: center;
    border: 1px solid var(--fux-blue);
}
table.calendar-table:last-of-type tr:last-of-type td:first-of-type,
table tr:last-of-type td:first-of-type {
  border-bottom-left-radius: 22px;
}
table tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 22px;
}
table body tr:last-of-type  {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
}
table thead th {
  border-right: solid 1px var(--fux-dark);
  border-bottom: solid 1px var(--fux-dark);
}
.table thead th:last-of-type {
  border-right: none;
}
table thead th {
  border-right: solid 1px var(--fux-dark);
  border-bottom: solid 1px var(--fux-dark);
}
table .primary-header {
    background-color: var(--fux-dark);
    border-color: var(--fux-dark_normal);
    color: #FFFFFF;
    text-align: center;
    height: 56px;
}
table .secondary-header {
    background-color: var(--fux-blue);
    border-color: var(--fux-dark);
    color: #FFFFFF;
    text-align: center;
    padding: 14px 0;
}
table .secondary-header th {
    font-size: 14px;
    font-weight: 500;
    padding: 14px 0;
}
table tr:not(.highlight-cell) {
    border-color: var(--fux-dark);
}
table td.highlight-cell {
    background-color: var(--fux-blue_normal);
    border-color: var(--fux-dark);
    color: #FFFFFF;
    text-align: center;
    padding: 14px 0;
}
table td.student-highlight-cell {
    background-color: var(--fux-red_dark);
    border-color: var(--fux-dark);
    color: #FFFFFF;
    text-align: center;
    padding: 14px 0;
}
table.calendar-table td.highlight-cell {
    width: 33%;
}
table tr:first-child td {
  border-top: none;
}

table tr:last-child td {
  border-bottom: none;
}

table tr td:first-child {
  border-left: none;
}

table tr td:last-child {
  border-right: none;
}
table.calendar-table tr:last-of-type td:first-of-type {
  border-radius: 0;
}