:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --surface-strong: #eef4ff;
  --text: #1f2937;
  --muted: #667085;
  --line: #dfe5ef;
  --line-soft: #eef2f7;
  --primary: #2563eb;
  --primary-strong: #1d4ed8;
  --success: #059669;
  --danger: #dc2626;
  --warning: #b7791f;
  --shadow: 0 14px 34px rgba(31, 41, 55, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.login-screen {
  height: 100vh;
  overflow: auto;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-card {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  white-space: nowrap;
}

.brand-mark {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
}

.login-card h1 {
  margin: 26px 0 8px;
  font-size: 26px;
}

.login-card p {
  color: var(--muted);
  margin: 0 0 24px;
}

.app-layout {
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}

.sidebar {
  height: 100vh;
  overflow: hidden;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.nav {
  display: grid;
  gap: 6px;
}

.nav-link {
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 650;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: var(--surface-strong);
}

.main-area {
  height: 100vh;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.topbar {
  flex: 0 0 64px;
  height: 64px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
}

.topbar-title {
  font-size: 17px;
  font-weight: 800;
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.table-page,
.stats-page,
.dashboard-page {
  gap: 12px;
}

.grid {
  display: grid;
  gap: 12px;
}

.grid.cards {
  grid-template-columns: repeat(6, minmax(120px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric {
  padding: 14px 16px;
  min-height: 92px;
}

.metric .label {
  color: var(--muted);
  font-size: 13px;
}

.metric .value {
  margin-top: 10px;
  font-size: 25px;
  font-weight: 850;
}

.table-toolbar,
.lz-table-toolbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
}

.lz-table-toolbar {
  justify-content: space-between;
  min-height: 40px;
}

.lz-toolbar-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filters {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters.compact,
.lz-filter-toolbar {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.filters.compact .input,
.filters.compact .select,
.filters.compact .btn,
.lz-filter-toolbar > * {
  flex: 0 0 auto;
}

.stats-toolbar,
.lz-filter-toolbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 2px;
}

.lz-table-toolbar > .lz-filter-toolbar {
  flex: 1 1 auto;
}

.table-toolbar > *,
.stats-toolbar > *,
.lz-filter-toolbar > * {
  flex-shrink: 0;
}

.btn.fixed {
  width: 76px;
}

.stats-overview {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px;
}

.dashboard-table-panel {
  flex: 1 1 auto;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  min-height: 36px;
  padding: 8px 10px;
  outline: none;
}

.textarea {
  min-height: 86px;
  resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.table-toolbar .lz-filter-input,
.stats-toolbar .lz-filter-input,
.lz-filter-toolbar .lz-filter-input {
  flex: 0 0 180px;
  width: 180px;
}

.table-toolbar .lz-filter-select,
.stats-toolbar .lz-filter-select,
.lz-filter-toolbar .lz-filter-select {
  flex: 0 0 160px;
  width: 160px;
}

.table-toolbar .lz-filter-select.is-small,
.stats-toolbar .lz-filter-select.is-small,
.lz-filter-toolbar .lz-filter-select.is-small {
  flex: 0 0 120px;
  width: 120px;
}

.table-toolbar .lz-filter-select.is-domain,
.stats-toolbar .lz-filter-select.is-domain,
.lz-filter-toolbar .lz-filter-select.is-domain {
  flex: 0 0 180px;
  width: 180px;
}

.table-toolbar .lz-filter-select.is-link,
.stats-toolbar .lz-filter-select.is-link,
.lz-filter-toolbar .lz-filter-select.is-link {
  flex: 0 0 220px;
  width: 220px;
}

.toolbar-button,
.table-toolbar button,
.lz-table-toolbar button,
.stats-toolbar button,
.lz-filter-toolbar button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 7px;
  font-weight: 720;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn:hover {
  border-color: #c6d0df;
}

.btn.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.btn.primary:hover {
  background: var(--primary-strong);
}

.btn.danger {
  color: var(--danger);
  border-color: #fecaca;
  background: #fff7f7;
}

.btn.ghost {
  background: transparent;
}

.btn.sm {
  min-height: 30px;
  padding: 5px 8px;
  font-size: 13px;
}

.lz-table-panel {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.lz-table-scroll,
.table-wrap {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow: auto;
}

.lz-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

.lz-table--links {
  min-width: 1320px;
}

.lz-table--domains {
  min-width: 1240px;
}

.lz-table--users {
  min-width: 720px;
}

.lz-table--stats {
  min-width: 560px;
}

.lz-table th,
.lz-table td {
  height: 42px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.lz-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #475467;
  font-size: 12px;
  font-weight: 750;
  background: #f7f9fc;
  border-bottom-color: var(--line);
}

.lz-table tbody tr:hover td {
  background: #f8fbff;
}

.truncate {
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.url-cell {
  max-width: 360px;
}

.muted {
  color: var(--muted);
}

.lz-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  background: #eef2ff;
  color: #3730a3;
}

.lz-tag.active {
  background: #e9f8f1;
  color: var(--success);
}

.lz-tag.disabled {
  background: #fff7e6;
  color: var(--warning);
}

.lz-tag.deleted,
.lz-tag.danger {
  background: #fee2e2;
  color: var(--danger);
}

.lz-table-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.lz-table-actions .btn {
  min-height: 26px;
  padding: 2px 4px;
  border-color: transparent;
  background: transparent;
  color: var(--primary);
}

.lz-table-actions .btn:hover {
  background: #eef4ff;
  border-color: transparent;
}

.lz-table-actions .btn.danger {
  color: var(--danger);
}

.empty,
.loading {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
  color: var(--muted);
}

.pagination-wrap {
  flex: 0 0 auto;
  min-height: 52px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.lz-pagination {
  min-height: 52px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px 12px;
}

.lz-pagination__total {
  color: var(--muted);
  font-size: 13px;
  margin-right: 4px;
}

.lz-pagination__sizes .select {
  width: 112px;
  min-height: 32px;
  padding: 5px 8px;
}

.lz-pagination__button {
  min-width: 32px;
  height: 32px;
  border: 1px solid #e0e6f0;
  border-radius: 7px;
  background: #f5f7fb;
  color: var(--text);
  font-weight: 720;
  padding: 0 10px;
}

.lz-pagination__button:hover:not(:disabled) {
  color: var(--primary);
  border-color: #bfcef5;
  background: #eef4ff;
}

.lz-pagination__button.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.lz-pagination__button:disabled {
  color: #a3adbd;
  background: #f1f4f8;
  border-color: #e5eaf2;
}

.lz-pagination__pager {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lz-pagination__ellipsis {
  min-width: 24px;
  color: var(--muted);
  text-align: center;
}

.lz-pagination__jump {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
}

.lz-pagination__jump .input {
  width: 58px;
  min-height: 32px;
  padding: 5px 8px;
  text-align: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 50;
}

.modal {
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--surface);
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.modal-head,
.modal-foot {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.modal-head {
  border-bottom: 1px solid var(--line);
}

.modal-head h2 {
  margin: 0;
  font-size: 18px;
}

.modal-body {
  padding: 18px;
}

.modal-foot {
  border-top: 1px solid var(--line);
  justify-content: flex-end;
}

.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;
}

.bulk-link-modal {
  width: min(1120px, calc(100vw - 32px));
  height: min(720px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bulk-link-modal .modal-head,
.bulk-link-modal .modal-foot {
  flex: 0 0 auto;
}

.bulk-link-modal .modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  padding: 16px 18px;
}

.bulk-link-form {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.bulk-link-settings {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.bulk-domain-field {
  width: min(420px, 100%);
  margin-bottom: 0;
}

.bulk-row-summary {
  flex: 0 0 auto;
  min-height: 36px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.bulk-editor-toolbar {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.bulk-table-wrap,
.bulk-result-wrap {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.bulk-link-table,
.bulk-result-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  font-size: 13px;
}

.bulk-link-table th,
.bulk-link-table td,
.bulk-result-table th,
.bulk-result-table td {
  height: 42px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: middle;
}

.bulk-link-table th,
.bulk-result-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 9px 10px;
  color: #475467;
  background: #f7f9fc;
  border-bottom-color: var(--line);
  font-size: 12px;
  font-weight: 750;
}

.bulk-link-table th:last-child,
.bulk-link-table td:last-child,
.bulk-result-table th:last-child,
.bulk-result-table td:last-child {
  border-right: 0;
}

.bulk-link-table tbody tr:last-child td,
.bulk-result-table tbody tr:last-child td {
  border-bottom: 0;
}

.bulk-link-table th:nth-child(2) {
  width: 43%;
}

.bulk-link-table th:nth-child(3) {
  width: 22%;
}

.bulk-link-table th:nth-child(4) {
  width: 29%;
}

.bulk-link-table td:not(.bulk-row-number):not(.bulk-row-action) {
  padding: 0;
}

.bulk-row-number {
  width: 52px;
  padding: 0 8px;
  color: var(--muted);
  text-align: center !important;
  font-variant-numeric: tabular-nums;
}

.bulk-row-action {
  width: 46px;
  text-align: center !important;
}

.bulk-cell-input {
  width: 100%;
  height: 41px;
  border: 0;
  border-radius: 0;
  outline: none;
  padding: 8px 10px;
  color: var(--text);
  background: transparent;
}

.bulk-cell-input:focus {
  position: relative;
  z-index: 1;
  box-shadow: inset 0 0 0 2px var(--primary);
  background: #fff;
}

.bulk-link-table tr.has-error td {
  background: #fff4f4;
}

.bulk-link-table tr.has-error .bulk-cell-input:focus {
  box-shadow: inset 0 0 0 2px var(--danger);
}

.bulk-remove-button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #98a2b3;
  font-size: 20px;
  line-height: 1;
}

.bulk-remove-button:hover {
  color: var(--danger);
  background: #fff1f1;
}

.bulk-link-form .form-error {
  flex: 0 0 auto;
  margin-top: 8px;
}

.bulk-result-table {
  min-width: 820px;
}

.bulk-result-table th:first-child,
.bulk-result-table td:first-child {
  width: 58px;
  text-align: center;
}

.bulk-result-table th:nth-child(2) {
  width: 31%;
}

.bulk-result-table th:nth-child(3) {
  width: 43%;
}

.bulk-result-table td {
  padding: 9px 10px;
}

.toast-root {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 260px;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.toast.error {
  border-left-color: var(--danger);
}

.toast.success {
  border-left-color: var(--success);
}

.form-error {
  min-height: 20px;
  margin-top: 8px;
  color: var(--danger);
  font-weight: 650;
}

.lz-date-range {
  width: 240px;
  flex: 0 0 240px;
}

.lz-date-range-host {
  width: 240px;
  flex: 0 0 240px;
}

.stats-toolbar .lz-date-range {
  flex: 0 0 240px;
}

.stats-toolbar .lz-date-range-host {
  flex: 0 0 240px;
  width: 240px;
}

.lz-date-range__input {
  width: 100%;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  text-align: left;
}

.lz-date-range__input:hover,
.lz-date-range__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.lz-date-range__icon {
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
}

.lz-date-range__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lz-date-range__text.is-placeholder {
  color: #98a2b3;
}

.lz-date-range__clear {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #98a2b3;
  font-size: 16px;
  line-height: 1;
}

.lz-date-range__clear:hover {
  color: var(--text);
  background: #eef2f7;
}

.lz-date-range__clear.is-hidden {
  visibility: hidden;
}

.lz-date-range__popper {
  position: fixed;
  z-index: 3000;
  width: 620px;
  max-width: calc(100vw - 16px);
  background: #fff;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
  overflow: hidden;
}

.lz-date-range__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 560px;
}

.lz-date-range__calendar {
  padding: 12px;
}

.lz-date-range__calendar.is-left {
  border-right: 1px solid var(--line-soft);
}

.lz-date-range__header {
  height: 32px;
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  text-align: center;
  color: var(--text);
}

.lz-date-range__header strong {
  font-size: 14px;
  font-weight: 750;
}

.lz-date-range__nav {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 20px;
  display: grid;
  place-items: center;
}

.lz-date-range__nav:hover {
  color: var(--primary);
  background: #eef4ff;
}

.lz-date-range__week,
.lz-date-range__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.lz-date-range__week {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.lz-date-range__week span {
  height: 26px;
  line-height: 26px;
}

.lz-date-range__grid {
  margin-top: 2px;
}

.lz-date-range__day {
  position: relative;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-size: 13px;
}

.lz-date-range__day:hover {
  color: var(--primary);
  background: #eef4ff;
}

.lz-date-range__day.is-muted {
  color: #c0c4cc;
}

.lz-date-range__day.is-today::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateX(-50%);
}

.lz-date-range__day.is-in-range {
  color: var(--primary);
  background: #eaf2ff;
}

.lz-date-range__day.is-start,
.lz-date-range__day.is-end {
  color: #fff;
  background: var(--primary);
}

.lz-date-range__day.is-start:hover,
.lz-date-range__day.is-end:hover {
  color: #fff;
  background: var(--primary-strong);
}

.lz-date-range__day.is-start::after,
.lz-date-range__day.is-end::after {
  background: #fff;
}

.lz-date-range__footer {
  min-height: 48px;
  padding: 8px 12px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  background: #fff;
}

@media (max-width: 1180px) {
  .grid.cards {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 760px) {
  .modal-backdrop {
    padding: 8px;
  }

  .app-layout {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .sidebar {
    padding: 14px 8px;
    align-items: center;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-link {
    padding: 10px 8px;
    text-align: center;
    font-size: 12px;
  }

  .topbar {
    height: 58px;
    flex-basis: 58px;
    padding: 0 12px;
    gap: 10px;
  }

  .topbar-title {
    font-size: 15px;
  }

  .topbar-user span {
    display: none;
  }

  .content {
    padding: 12px;
  }

  .grid.cards,
  .stats-overview {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .metric {
    min-height: 82px;
    padding: 12px;
  }

  .metric .value {
    font-size: 22px;
  }

  .lz-table-toolbar {
    align-items: flex-start;
  }

  .lz-toolbar-actions {
    align-items: flex-start;
  }

  .bulk-link-modal {
    width: calc(100vw - 16px);
    height: calc(100vh - 16px);
    max-height: calc(100vh - 16px);
  }

  .bulk-link-settings {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .bulk-domain-field {
    width: 100%;
  }

  .bulk-row-summary {
    min-height: 24px;
  }

  .lz-date-range__popper {
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .grid.cards,
  .stats-overview {
    grid-template-columns: 1fr;
  }

  .toast-root {
    left: 14px;
    right: 14px;
  }

  .toast {
    min-width: 0;
    max-width: none;
  }

  .lz-pagination {
    justify-content: flex-start;
  }

  .lz-pagination__sizes,
  .lz-pagination__sizes .select {
    width: auto;
  }

  .lz-pagination__jump .input {
    width: 64px;
  }
}
