html { scroll-behavior: smooth; }
body { font-feature-settings: "ss01"; }

.glyph svg {
  display: block;
  width: 1em;
  height: 1em;
}

.action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  background: #ffffff;
  transition: all .15s ease;
}
.action-icon svg {
  width: 1rem;
  height: 1rem;
}
.action-icon .glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
}
.action-icon:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}
.action-icon:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}
.action-icon-danger {
  color: #b91c1c;
  border-color: #fca5a5;
}
.action-icon-danger:hover {
  background: #fef2f2;
  border-color: #ef4444;
}
.action-icon-success {
  color: #166534;
  border-color: #86efac;
}
.action-icon-success:hover {
  background: #f0fdf4;
  border-color: #22c55e;
}
.action-icon-muted {
  color: #94a3b8;
  border-color: #e2e8f0;
  background: #f8fafc;
}
.action-icon-muted:hover {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.action-icon[disabled] {
  cursor: not-allowed;
  opacity: .85;
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.action-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1px solid #cbd5e1;
  border-radius: .75rem;
  padding: .35rem .6rem;
  background: #fff;
  color: #0f172a;
  transition: all .15s ease;
}
.action-pill .glyph {
  width: 1rem;
  text-align: center;
  font-weight: 700;
  line-height: 1;
}
.action-pill:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}
.action-pill-danger {
  color: #b91c1c;
  border-color: #fca5a5;
}
.action-pill-danger:hover {
  background: #fef2f2;
  border-color: #ef4444;
}
.action-pill-success {
  color: #166534;
  border-color: #86efac;
}
.action-pill-success:hover {
  background: #f0fdf4;
  border-color: #22c55e;
}
