* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #ffffff;
  color: #222433;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
}

.shortener-wrap {
  width: min(100%, 560px);
}

.site-header {
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.site-header .brand {
  margin: 0;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0;
  margin: 0 auto 30px;
  color: #1f2430;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
}

.brand span {
  color: #3467f6;
}

.brand strong {
  color: #1f2430;
}

.toolbar {
  position: relative;
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 58px;
  border: 0;
  border-radius: 6px;
  background: #050505;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.toolbar-plus {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.toolbar-link-icon svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.form-card,
.stats-card {
  border: 1px solid #e1e4ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.12);
}

.form-card {
  overflow: hidden;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 20px 8px;
}

.card-head h1 {
  margin: 0;
  color: #303245;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
}

.account-link {
  flex: 0 0 auto;
  color: #5d6678;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
}

.account-link:hover {
  color: #111111;
}

.short-form {
  display: grid;
  gap: 10px;
  padding: 16px 20px 12px;
}

.short-form label {
  color: #5d6678;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.short-form input {
  width: 100%;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #d4d9e2;
  border-radius: 6px;
  background: #ffffff;
  color: #262b37;
  font-size: 15px;
  line-height: 20px;
  outline: none;
}

.short-form input::placeholder {
  color: #9aa3b2;
}

.short-form input:focus {
  border-color: #b9c0cd;
  box-shadow: 0 0 0 3px rgba(31, 36, 48, 0.06);
}

.actions {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  margin: 16px -20px -12px;
  padding: 12px 14px;
  border-top: 1px solid #eceff3;
}

.button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 0;
  border-radius: 6px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button.primary {
  background: #050505;
  color: #ffffff;
}

.button.primary:hover {
  background: #222222;
}

.button.ghost {
  background: #ffe4e7;
  color: #ef4444;
}

.button.ghost:hover {
  background: #ef4444;
  color: #ffffff;
}

.result-panel {
  margin: 16px 20px 20px;
  padding: 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
}

.result-panel span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.result-panel a,
.result-panel p {
  margin: 0;
  overflow-wrap: anywhere;
}

.copy-result {
  display: inline-flex;
  max-width: 100%;
  gap: 4px;
  align-items: center;
  justify-content: flex-start;
}

.copy-link-text {
  min-width: 0;
  flex: 0 1 auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #1d4ed8;
  font: inherit;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.copy-link-text:hover {
  color: #1e40af;
}

.copy-button {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #2563eb;
  cursor: pointer;
  appearance: none;
}

.copy-button:hover {
  color: #1e40af;
}

.copy-button svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.copy-feedback {
  display: none;
  margin-top: 8px !important;
  color: #16743a;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.copy-feedback.is-visible {
  display: block;
}

.result-panel.success {
  border: 1px solid #d4f4dd;
  background: #f0fff4;
  color: #16743a;
}

.result-panel.error {
  border: 1px solid #ffd6dc;
  background: #fff1f3;
  color: #b4232c;
}

.stats-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  padding: 18px 20px;
}

.stats-card div {
  min-width: 0;
}

.stats-card span {
  display: block;
  margin-bottom: 7px;
  color: #5d6678;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.stats-card strong {
  display: block;
  color: #2f3343;
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
}

@media (max-width: 560px) {
  .page-shell {
    align-items: flex-start;
    padding-top: 28px;
  }

  .brand {
    margin-bottom: 22px;
  }

  .card-head,
  .actions {
    align-items: stretch;
  }

  .card-head {
    flex-direction: column;
  }

  .account-link {
    width: 100%;
  }

  .stats-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .copy-result {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.admin-shell {
  align-items: flex-start;
  padding: 38px 16px 56px;
}

.admin-wrap {
  width: min(100%, 1240px);
}

.account-wrap {
  width: min(100%, 980px);
}

.admin-toolbar {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.admin-hero {
  overflow: visible;
}

.admin-head {
  align-items: flex-start;
  padding-bottom: 22px;
}

.admin-kicker {
  margin: 0 0 5px;
  color: #6b7280;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.button.secondary {
  background: #050505;
  color: #ffffff;
}

.button.secondary:hover {
  background: #222222;
}

.button.light {
  border: 1px solid #dde2ea;
  background: #ffffff;
  color: #303245;
}

.button.light:hover {
  border-color: #c7ceda;
  background: #f7f8fa;
}

.button.danger,
.button.is-danger {
  background: #ffe4e7;
  color: #d91f2e;
}

.button.danger:hover,
.button.is-danger:hover {
  background: #d91f2e;
  color: #ffffff;
}

.admin-notice {
  display: grid;
  gap: 4px;
  margin: 0 20px 18px;
  padding: 13px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 20px;
}

.admin-notice strong,
.admin-notice span {
  display: block;
}

.admin-notice.success {
  border: 1px solid #d4f4dd;
  background: #f0fff4;
  color: #16743a;
}

.admin-notice.error {
  border: 1px solid #ffd6dc;
  background: #fff1f3;
  color: #b4232c;
}

.admin-stats {
  margin: 0;
  padding: 18px 20px 22px;
  border-width: 1px 0 0;
  border-radius: 0 0 8px 8px;
  box-shadow: none;
}

.admin-table-card {
  margin-top: 18px;
  overflow: hidden;
}

.admin-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 20px 16px;
  border-bottom: 1px solid #eceff3;
}

.bulk-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bulk-delete-button:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.filter-form {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: end;
  padding: 16px 20px;
  border-bottom: 1px solid #eceff3;
}

.filter-form label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.filter-form label span {
  color: #5d6678;
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
}

.filter-form select,
.filter-form input {
  width: 100%;
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid #d4d9e2;
  border-radius: 6px;
  background: #ffffff;
  color: #262b37;
  font-size: 14px;
  line-height: 18px;
  outline: none;
}

.filter-form select:focus,
.filter-form input:focus {
  border-color: #b9c0cd;
  box-shadow: 0 0 0 3px rgba(31, 36, 48, 0.06);
}

.list-summary {
  padding: 12px 20px;
  border-bottom: 1px solid #eceff3;
  color: #667085;
  font-size: 13px;
  line-height: 18px;
}

.admin-table-head h2 {
  margin: 0;
  color: #303245;
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
}

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

.admin-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  background: #ffffff;
  color: #303245;
}

.admin-table th,
.admin-table td {
  padding: 13px 14px;
  border-bottom: 1px solid #eceff3;
  text-align: left;
  vertical-align: middle;
  font-size: 13px;
  line-height: 18px;
}

.admin-table thead th {
  background: #f7f8fa;
  color: #5d6678;
  font-weight: 700;
  white-space: nowrap;
}

.select-cell {
  width: 48px;
  min-width: 48px;
  text-align: center;
}

.bulk-checkbox {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #050505;
  cursor: pointer;
}

.admin-table tbody th,
.admin-table tbody td {
  color: #303245;
  font-weight: 500;
}

.admin-table tbody tr:hover th,
.admin-table tbody tr:hover td {
  background: #fbfcfd;
}

.admin-table a {
  color: #2f5fe8;
  overflow-wrap: anywhere;
}

.admin-table .button {
  min-height: 32px;
  padding: 7px 12px;
  color: #d91f2e;
  white-space: nowrap;
}

.admin-table .icon-button {
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
}

.icon-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-table tbody tr.is-editing th,
.admin-table tbody tr.is-editing td {
  background: #fbfcff;
}

.sort-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

.sort-link:hover {
  color: #111111;
  border-bottom-color: #111111;
}

.sort-link.is-active {
  color: #111111;
  border-bottom-color: #111111;
}

.link-cell {
  max-width: 420px;
}

.code-cell {
  min-width: 130px;
}

.edit-input {
  width: 100%;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid #d4d9e2;
  border-radius: 6px;
  background: #ffffff;
  color: #262b37;
  font-size: 13px;
  line-height: 18px;
  outline: none;
}

.edit-input:focus {
  border-color: #b9c0cd;
  box-shadow: 0 0 0 3px rgba(31, 36, 48, 0.06);
}

.code-input {
  min-width: 110px;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-table .button.edit {
  background: #edf2ff;
  color: #2f5fe8;
}

.admin-table .button.edit:hover {
  background: #2f5fe8;
  color: #ffffff;
}

.admin-table .button.save {
  background: #050505;
  color: #ffffff;
}

.admin-table .button.save:hover {
  background: #222222;
}

.admin-table .button.cancel {
  border: 1px solid #dde2ea;
  background: #ffffff;
  color: #303245;
}

.admin-table .button.cancel:hover {
  border-color: #c7ceda;
  background: #f7f8fa;
}

.empty-cell {
  color: #6b7280;
  text-align: center;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 18px 20px 20px;
  border-top: 1px solid #eceff3;
}

.page-button,
.page-ellipsis {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.page-button {
  border: 1px solid #dde2ea;
  background: #ffffff;
  color: #303245;
}

.page-button:hover,
.page-button.is-active {
  border-color: #050505;
  background: #050505;
  color: #ffffff;
}

.page-ellipsis {
  color: #667085;
}

.account-table {
  min-width: 760px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(17, 24, 39, 0.46);
}

.modal-overlay.is-open {
  display: flex;
}

.modal-card {
  width: min(100%, 480px);
  overflow: hidden;
  border: 1px solid #e1e4ea;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.22);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #eceff3;
}

.modal-head h2 {
  margin: 0;
  color: #303245;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}

.modal-close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #dde2ea;
  border-radius: 6px;
  background: #ffffff;
  color: #303245;
  cursor: pointer;
}

.modal-close:hover {
  background: #f7f8fa;
}

.modal-close svg {
  width: 17px;
  height: 17px;
}

.modal-form {
  padding-top: 18px;
}

.modal-actions {
  margin-top: 18px;
}

.auth-shell {
  align-items: center;
}

.auth-wrap {
  width: min(100%, 460px);
}

.auth-head {
  padding-bottom: 14px;
}

.auth-card {
  overflow: hidden;
}

.auth-message {
  margin-bottom: 4px;
}

.auth-actions .button {
  min-width: 120px;
}

.lost-shell {
  align-items: center;
}

.lost-wrap {
  width: min(100%, 520px);
}

.lost-card {
  overflow: hidden;
}

.lost-body {
  display: grid;
  gap: 10px;
  padding: 28px 24px 24px;
  text-align: center;
}

.lost-body h1 {
  margin: 0;
  color: #303245;
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
}

.lost-body p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 22px;
}

.lost-actions {
  justify-content: center;
  margin-top: 0;
}

@media (max-width: 760px) {
  .admin-head,
  .admin-table-head {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-form {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions .button {
    flex: 1 1 140px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .auth-shell {
    align-items: flex-start;
  }
}

.toolbar .theme-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 80;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.toolbar .theme-toggle:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
}

.theme-icon {
  width: 16px;
  height: 16px;
  display: none;
}

html[data-theme="light"] .theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun {
  display: block;
}

html[data-theme="dark"] body {
  background: #101114;
  color: #e5e7eb;
}

html[data-theme="dark"] .toolbar .theme-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #facc15;
  box-shadow: none;
}

html[data-theme="dark"] .toolbar .theme-toggle:hover {
  border-color: rgba(250, 204, 21, 0.45);
  background: rgba(250, 204, 21, 0.12);
}

html[data-theme="dark"] .brand {
  color: #f8fafc;
}

html[data-theme="dark"] .brand span {
  color: #60a5fa;
}

html[data-theme="dark"] .brand strong,
html[data-theme="dark"] .card-head h1,
html[data-theme="dark"] .admin-table-head h2,
html[data-theme="dark"] .modal-head h2,
html[data-theme="dark"] .lost-body h1 {
  color: #f8fafc;
}

html[data-theme="dark"] .toolbar {
  background: #05070a;
  color: #ffffff;
}

html[data-theme="dark"] .form-card,
html[data-theme="dark"] .stats-card,
html[data-theme="dark"] .modal-card {
  border-color: #2f3744;
  background: #181b20;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .account-link,
html[data-theme="dark"] .short-form label,
html[data-theme="dark"] .stats-card span,
html[data-theme="dark"] .admin-kicker,
html[data-theme="dark"] .filter-form label span,
html[data-theme="dark"] .list-summary,
html[data-theme="dark"] .lost-body p {
  color: #9ca3af;
}

html[data-theme="dark"] .account-link:hover {
  color: #f8fafc;
}

html[data-theme="dark"] .stats-card strong {
  color: #f8fafc;
}

html[data-theme="dark"] .short-form input,
html[data-theme="dark"] .filter-form select,
html[data-theme="dark"] .filter-form input,
html[data-theme="dark"] .edit-input {
  border-color: #374151;
  background: #111827;
  color: #f8fafc;
}

html[data-theme="dark"] .short-form input::placeholder,
html[data-theme="dark"] .filter-form input::placeholder {
  color: #6b7280;
}

html[data-theme="dark"] .short-form input:focus,
html[data-theme="dark"] .filter-form select:focus,
html[data-theme="dark"] .filter-form input:focus,
html[data-theme="dark"] .edit-input:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.16);
}

html[data-theme="dark"] .actions,
html[data-theme="dark"] .admin-table-head,
html[data-theme="dark"] .filter-form,
html[data-theme="dark"] .list-summary,
html[data-theme="dark"] .modal-head,
html[data-theme="dark"] .pagination {
  border-color: #2f3744;
}

html[data-theme="dark"] .button.primary,
html[data-theme="dark"] .button.secondary {
  background: #2563eb;
  color: #ffffff;
}

html[data-theme="dark"] .button.primary:hover,
html[data-theme="dark"] .button.secondary:hover {
  background: #1d4ed8;
}

html[data-theme="dark"] .button.light,
html[data-theme="dark"] .admin-table .button.cancel,
html[data-theme="dark"] .page-button,
html[data-theme="dark"] .modal-close {
  border-color: #374151;
  background: #111827;
  color: #e5e7eb;
}

html[data-theme="dark"] .button.light:hover,
html[data-theme="dark"] .admin-table .button.cancel:hover,
html[data-theme="dark"] .page-button:hover,
html[data-theme="dark"] .page-button.is-active,
html[data-theme="dark"] .modal-close:hover {
  border-color: #60a5fa;
  background: #1d4ed8;
  color: #ffffff;
}

html[data-theme="dark"] .button.ghost,
html[data-theme="dark"] .button.danger,
html[data-theme="dark"] .button.is-danger {
  background: #3f1d25;
  color: #fb7185;
}

html[data-theme="dark"] .button.ghost:hover,
html[data-theme="dark"] .button.danger:hover,
html[data-theme="dark"] .button.is-danger:hover {
  background: #be123c;
  color: #ffffff;
}

html[data-theme="dark"] .result-panel.success {
  border-color: #14532d;
  background: #082c1a;
  color: #86efac;
}

html[data-theme="dark"] .result-panel.error,
html[data-theme="dark"] .admin-notice.error {
  border-color: #7f1d1d;
  background: #341316;
  color: #fca5a5;
}

html[data-theme="dark"] .admin-notice.success {
  border-color: #14532d;
  background: #082c1a;
  color: #86efac;
}

html[data-theme="dark"] .copy-link-text {
  color: #93c5fd;
}

html[data-theme="dark"] .copy-link-text:hover,
html[data-theme="dark"] .copy-button:hover {
  color: #bfdbfe;
}

html[data-theme="dark"] .copy-button {
  color: #60a5fa;
}

html[data-theme="dark"] .copy-feedback {
  color: #86efac;
}

html[data-theme="dark"] .admin-table {
  background: #181b20;
  color: #e5e7eb;
}

html[data-theme="dark"] .admin-table th,
html[data-theme="dark"] .admin-table td {
  border-color: #2f3744;
}

html[data-theme="dark"] .admin-table thead th {
  background: #111827;
  color: #cbd5e1;
}

html[data-theme="dark"] .admin-table tbody th,
html[data-theme="dark"] .admin-table tbody td {
  color: #e5e7eb;
}

html[data-theme="dark"] .admin-table tbody tr:hover th,
html[data-theme="dark"] .admin-table tbody tr:hover td,
html[data-theme="dark"] .admin-table tbody tr.is-editing th,
html[data-theme="dark"] .admin-table tbody tr.is-editing td {
  background: #20242b;
}

html[data-theme="dark"] .admin-table a,
html[data-theme="dark"] .sort-link.is-active,
html[data-theme="dark"] .sort-link:hover {
  color: #93c5fd;
}

html[data-theme="dark"] .sort-link:hover,
html[data-theme="dark"] .sort-link.is-active {
  border-bottom-color: #93c5fd;
}

html[data-theme="dark"] .admin-table .button.edit {
  background: #172554;
  color: #93c5fd;
}

html[data-theme="dark"] .admin-table .button.edit:hover,
html[data-theme="dark"] .admin-table .button.save,
html[data-theme="dark"] .admin-table .button.save:hover {
  background: #2563eb;
  color: #ffffff;
}

html[data-theme="dark"] .modal-overlay {
  background: rgba(3, 7, 18, 0.68);
}

html[data-theme="dark"] .page-ellipsis,
html[data-theme="dark"] .empty-cell {
  color: #9ca3af;
}

@media (max-width: 560px) {
  .toolbar {
    padding-right: 48px;
    padding-left: 48px;
  }

  .toolbar .theme-toggle {
    right: 8px;
  }
}
