.auth-page {
  max-width: 420px;
  margin: 1.5rem auto 2rem;
}

.auth-card {
  padding: 1.35rem 1.5rem 1.5rem;
}

.auth-lead {
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dh-muted);
  margin-top: 0.65rem;
}

.auth-input,
.auth-select {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--dh-border);
  border-radius: 10px;
  font: inherit;
  background: var(--dh-surface);
  color: var(--dh-text);
}

.auth-select {
  cursor: pointer;
}

.auth-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.auth-submit {
  margin-top: 1rem;
  width: 100%;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.auth-foot {
  margin: 1rem 0 0;
  font-size: 0.82rem;
}

.auth-signed-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.emp-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.emp-type-badge--admin {
  background: #ede9fe;
  color: #5b21b6;
}

.emp-type-badge--salesman {
  background: #ccfbf1;
  color: #0f766e;
}

.emp-type-badge--deliveryman {
  background: #fee2e2;
  color: #dc2626;
}

.emp-type-badge--officeboy {
  background: #ffedd5;
  color: #c2410c;
}

.disthub-root.theme-dark .emp-type-badge--admin {
  background: rgba(91, 33, 182, 0.35);
  color: #ddd6fe;
}

.disthub-root.theme-dark .emp-type-badge--salesman {
  background: rgba(15, 118, 110, 0.35);
  color: #99f6e4;
}

.disthub-root.theme-dark .emp-type-badge--deliveryman {
  background: rgba(220, 38, 38, 0.25);
  color: #fca5a5;
}

.disthub-root.theme-dark .emp-type-badge--officeboy {
  background: rgba(194, 65, 12, 0.35);
  color: #fed7aa;
}

.perm-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .perm-grid {
    grid-template-columns: 1fr;
  }
}

.perm-form-card,
.perm-list-card,
.perm-types-card {
  padding: 1.1rem 1.25rem 1.25rem;
}

.perm-username-readonly {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.perm-table-wrap {
  overflow-x: auto;
}

.perm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.perm-table th,
.perm-table td {
  padding: 0.55rem 0.45rem;
  border-bottom: 1px solid var(--dh-border);
  text-align: left;
  vertical-align: middle;
}

.perm-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dh-muted);
}

.perm-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  white-space: nowrap;
}

.perm-delete-form {
  display: inline;
  margin: 0;
}

.btn-sm {
  padding: 0.28rem 0.55rem;
  font-size: 0.78rem;
}

.btn-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.btn-danger:hover {
  background: #fecaca;
}

.perm-type-legend {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  font-size: 0.88rem;
}

.perm-type-legend li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.dh-alert {
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.dh-alert--ok {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* —— Login (DistHub themed) —— */
.login-root {
  --login-green: #059669;
  --login-teal: #0d9488;
  --login-deep: #064e3b;
}

.login-body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--dh-font, "Plus Jakarta Sans", system-ui, sans-serif);
  overflow-x: hidden;
}

.login-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.login-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 900px) {
  .login-layout {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 3rem;
  }
}

.login-intro {
  width: 100%;
  max-width: 520px;
  color: #fff;
}

@media (min-width: 900px) {
  .login-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.login-intro-badge {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ecfdf5;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.login-intro-title {
  margin: 0.75rem 0 0;
  font-size: clamp(2.15rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.login-intro-lead {
  margin: 0.65rem 0 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: #a7f3d0;
  letter-spacing: -0.01em;
}

.login-intro-desc {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 42ch;
}

.login-intro-features {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.login-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.login-feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateX(4px);
}

.login-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.login-feature-icon svg {
  width: 20px;
  height: 20px;
}

.login-feature-icon--bills {
  background: rgba(204, 251, 241, 0.18);
  color: #99f6e4;
}

.login-feature-icon--hisab {
  background: rgba(254, 243, 199, 0.18);
  color: #fde68a;
}

.login-feature-icon--unpaid {
  background: rgba(254, 226, 226, 0.16);
  color: #fecaca;
}

.login-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.login-feature-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.login-feature-text span {
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.login-wall {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.login-wall-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(52, 211, 153, 0.35), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(20, 184, 166, 0.28), transparent 50%),
    linear-gradient(145deg, #022c22 0%, #064e3b 28%, #0f766e 58%, #047857 100%);
}

.login-wall-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

.login-wall-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.login-wall-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  animation: login-orb-float 14s ease-in-out infinite;
}

.login-wall-orb--1 {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 12%;
  background: #34d399;
}

.login-wall-orb--2 {
  width: 220px;
  height: 220px;
  bottom: 18%;
  left: 8%;
  background: #2dd4bf;
  animation-delay: -4s;
}

.login-wall-orb--3 {
  width: 160px;
  height: 160px;
  top: 42%;
  left: 38%;
  background: #6ee7b7;
  animation-delay: -8s;
}

@keyframes login-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.06); }
}

.login-wall-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.1) 0%, transparent 45%, transparent 100%);
  pointer-events: none;
}

.login-center {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .login-center {
    display: flex;
    max-width: 440px;
    align-self: stretch;
  }
}

.login-brand-logo-wrap--hero {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.login-brand-mark.login-brand-logo-wrap--hero {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  font-size: 1.1rem;
}

.login-brand-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.login-brand-logo-wrap--card {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.2);
}

.login-brand-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #059669, #14b8a6);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.login-brand-mark.login-brand-logo-wrap--card {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 1rem;
}

.login-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.28),
    0 12px 32px rgba(15, 23, 42, 0.12);
  padding: 2.1rem 1.9rem 1.75rem;
}

@media (min-width: 900px) {
  .login-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-height: 100%;
    padding: 3rem 2.25rem 2.85rem;
  }
}

.login-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid #e2e8f0;
}

.login-card-brand-text {
  min-width: 0;
}

.login-card-title {
  margin: 0.2rem 0 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.15;
}

.login-card-eyebrow {
  margin: 0.15rem 0 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--login-teal);
}

.login-card-sub {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #64748b;
}

@media (min-width: 900px) {
  .login-card-head {
    margin-bottom: 1.85rem;
    padding-bottom: 1.5rem;
  }

  .login-card-title {
    font-size: 1.65rem;
  }

  .login-card-sub {
    font-size: 0.95rem;
    color: #64748b;
  }

  .login-form {
    gap: 1.15rem;
  }

  .login-submit {
    margin-top: 0.65rem;
  }
}

.login-alert {
  margin-bottom: 0.85rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-remember {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  user-select: none;
}

.login-remember input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  accent-color: var(--login-teal);
  cursor: pointer;
  flex-shrink: 0;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.login-field-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #475569;
}

.login-field-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 76px;
  padding: 0 1.25rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.login-field-wrap:hover {
  border-color: #94a3b8;
  background: #fafafa;
}

.login-field-wrap:focus-within {
  border-color: var(--login-teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.14);
}

.login-field-icon {
  width: 24px;
  height: 24px;
  color: #64748b;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.login-field-wrap:focus-within .login-field-icon {
  color: var(--login-teal);
}

.login-field-icon svg {
  width: 24px;
  height: 24px;
}

.login-field-input {
  flex: 1;
  width: 100%;
  min-width: 0;
  min-height: 72px;
  padding: 1.15rem 0;
  border: none;
  border-radius: 0;
  font: inherit;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1.35;
  color: #0f172a;
  background: transparent;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.login-field-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.login-field-input:focus {
  outline: none;
  box-shadow: none;
}

.login-field-input:-webkit-autofill,
.login-field-input:-webkit-autofill:hover,
.login-field-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #0f172a;
  caret-color: #0f172a;
  transition: background-color 9999s ease-out 0s;
}

.login-field-wrap:focus-within .login-field-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.login-field-wrap--password {
  padding-right: 0.45rem;
}

.login-field-wrap--password .dh-password-toggle {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin-left: 0.15rem;
  position: static;
  transform: none;
}

.dh-password-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.dh-password-wrap .assign-field-input {
  width: 100%;
  padding-right: 2.85rem;
}

.dh-password-toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}

.dh-password-toggle:hover {
  color: var(--login-teal, #0d9488);
  background: #ecfdf5;
}

.dh-password-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.18);
}

.dh-password-toggle svg {
  width: 18px;
  height: 18px;
}

.dh-password-toggle .dh-eye-closed {
  display: none;
}

.dh-password-toggle[aria-pressed="true"] .dh-eye-open {
  display: none;
}

.dh-password-toggle[aria-pressed="true"] .dh-eye-closed {
  display: block;
}

.disthub-root.theme-dark .dh-password-toggle:hover {
  background: rgba(13, 148, 136, 0.2);
  color: #5eead4;
}

.login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.35rem;
  padding: 1.05rem 1.25rem;
  min-height: 68px;
  border: none;
  border-radius: 16px;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #059669 0%, #0d9488 55%, #0f766e 100%);
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28);
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.login-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.15s;
}

.login-submit:hover {
  filter: brightness(1.04);
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.34);
}

.login-submit:hover svg {
  transform: translateX(2px);
}

.login-submit:active {
  transform: translateY(1px);
}

.login-foot {
  margin: 1.1rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
  color: #64748b;
}

.login-foot code {
  font-size: 0.76rem;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 600;
}

@media (max-width: 420px) {
  .login-card {
    padding: 1.5rem 1.2rem 1.25rem;
    border-radius: 18px;
  }

  .login-card-title {
    font-size: 1.28rem;
  }
}

/* —— Permissions (assign theme) —— */
.perm-page .assign-hero {
  margin-bottom: 1rem;
}

.perm-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.1fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

@media (max-width: 1100px) {
  .perm-layout {
    grid-template-columns: 1fr;
  }
}

.perm-panel {
  background: var(--dh-surface, #fff);
  border: 1px solid var(--dh-border, #e2e8f0);
  border-radius: 14px;
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: var(--dh-shadow, 0 4px 18px rgba(15, 23, 42, 0.05));
  color: var(--dh-text, #0f172a);
}

.perm-panel-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dh-text, #0f172a);
}

.perm-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
  margin-bottom: 0.65rem;
}

@media (max-width: 560px) {
  .perm-form-grid {
    grid-template-columns: 1fr;
  }
}

.perm-check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--dh-text, #0f172a);
}

.perm-readonly-val {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.perm-access-block {
  margin-top: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--dh-border, #e2e8f0);
}

.perm-access-title {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--dh-text, #0f172a);
}

.perm-access-hint {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  color: var(--dh-muted, #64748b);
}

.perm-matrix-wrap {
  overflow-x: auto;
  margin-bottom: 0.65rem;
}

.perm-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.perm-matrix th,
.perm-matrix td {
  padding: 0.45rem 0.35rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.perm-matrix th[scope="row"] {
  text-align: left;
  font-weight: 700;
  color: var(--dh-text, #334155);
  white-space: nowrap;
}

.perm-matrix thead th {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 700;
}

.perm-radio {
  display: inline-flex;
  cursor: pointer;
}

.perm-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.perm-radio-ui {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  display: block;
  transition: border-color 0.15s, background 0.15s;
}

.perm-radio input:checked + .perm-radio-ui {
  border-color: #0f766e;
  background: radial-gradient(circle at center, #0f766e 0 5px, transparent 6px);
}

.perm-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.perm-td-name {
  font-weight: 700;
}

.perm-user-code {
  font-size: 0.78rem;
}

.perm-td-access {
  white-space: nowrap;
}

.perm-access-pill {
  display: inline-block;
  margin-right: 0.25rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: #ecfdf5;
  color: #047857;
}

.perm-access-pill--read {
  background: #eff6ff;
  color: #1d4ed8;
}

.perm-access-pill--all {
  background: #f3e8ff;
  color: #6b21a8;
}

.perm-legend {
  background: var(--dh-surface, #fff);
  border: 1px solid var(--dh-border, #e2e8f0);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: var(--dh-text, #0f172a);
}

.dh-alert--error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.disthub-root.theme-dark .dh-alert--ok {
  background: rgba(22, 101, 52, 0.25);
  color: #bbf7d0;
}

.disthub-root.theme-dark .dh-alert--error {
  background: rgba(153, 27, 27, 0.25);
  color: #fecaca;
}

.sidebar-section-label--access {
  margin-top: 0.75rem;
}
