
.mat-toolbar {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.mat-search {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.mat-search input {
  flex: 1 1 260px;
  padding: 14px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  outline: none;
}

.mat-search input:focus {
  border-color: rgba(255, 255, 255, 0.28);
}

.mat-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}

.mat-breadcrumb a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
}

.mat-breadcrumb a:hover {
  opacity: 0.9;
}

.mat-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.mat-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.mat-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  color: var(--white);
}

.mat-card__right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mat-link {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.32);
}

.mat-link:hover {
  opacity: 0.9;
}

