/* css styles */

.table-responsive {
  overflow-x: auto;
}

.table thead th {
  background-color: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
  font-weight: 600;
}

.table tbody tr:nth-of-type(odd) {
  background-color: rgba(10, 113, 101, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(10, 113, 101, 0.12);
}

.table {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.table td:first-child {
  font-weight: 600;
  vertical-align: middle;
}

details.course-entry {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.5rem 0;
}

details.course-entry summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

details.course-entry summary::-webkit-details-marker {
  display: none;
}

details.course-entry summary::before {
  content: "▸";
  color: var(--bs-primary);
  display: inline-block;
  transition: transform 0.15s ease;
}

details.course-entry[open] summary::before {
  transform: rotate(90deg);
}

details.course-entry .course-detail {
  margin: 0.4rem 0 0 1.25rem;
  padding-left: 0.5rem;
  border-left: 2px solid var(--bs-primary);
}

details.course-entry .course-detail p {
  margin: 0.15rem 0;
}

#quarto-document-content {
  max-width: 800px;
}

#quarto-document-content:has(.quarto-about-trestles) {
  max-width: none;
}

.footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Litera's theme only sets the serif body font on <p>, not <li>;
   match list items in the page content to the same font as paragraphs. */
#quarto-document-content li {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
}

