.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.breadcrumb-list li::after {
  content: "/";
  margin-left: 0.35rem;
}

.breadcrumb-list li:last-child::after {
  content: "";
}

.breadcrumb-list a {
  color: var(--color-accent-emerald);
}

.breadcrumb-list a:hover {
  color: var(--color-primary-dark);
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-menu thead tr {
  background-color: var(--color-surface-soft);
}

.table-menu th {
  padding: 0.55rem 0.75rem;
  text-align: left;
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-text-muted);
}

.table-menu thead tr th:first-child {
  border-radius: 999px 0 0 999px;
}

.table-menu thead tr th:last-child {
  border-radius: 0 999px 999px 0;
}

@media (max-width: 639.98px) {
  h1 {
    font-size: var(--font-size-3xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }
}
