@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-vietnamese-wght-normal.woff2") format("woff2");
  unicode-range:
    U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --brand: #e9550d;
  --brand-hover: #cb4406;
  --brand-text: #b73f08;
  --brand-soft: #fff2e9;
  --ink: #252a32;
  --muted: #6e747f;
  --canvas: #f7f8fa;
  --surface: #fff;
  --border: #e8e9ed;
  --green: #287e58;
  --green-soft: #edf8f2;
  --blue: #4868b7;
  --blue-soft: #eef3ff;
  --red: #c03636;
  --radius: 14px;
  --sidebar: 238px;
  --shadow: 0 3px 12px #1c263404;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input {
  touch-action: manipulation;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
dialog:focus-visible {
  outline: 3px solid #e9550d70;
  outline-offset: 3px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.35;
  letter-spacing: -0.035em;
}
h1 {
  font-size: 30px;
  font-weight: 650;
}
h2 {
  font-size: 18px;
  font-weight: 650;
}
h3 {
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
}
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.icon {
  width: 20px;
  height: 20px;
}
input {
  min-width: 0;
  width: 100%;
  height: 45px;
  border: 1px solid #dfe2e7;
  border-radius: 8px;
  padding: 0 13px;
  background: #fff;
  color: var(--ink);
  transition:
    border-color 0.16s,
    box-shadow 0.16s;
}
input::placeholder {
  color: #6d7582;
  font-size: 14px;
}
input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px #e9550d0b;
  outline: none;
}
input[aria-invalid="true"] {
  border-color: var(--red);
}
[hidden] {
  display: none !important;
}
.muted {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  background: white;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--brand-text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow-line {
  width: 24px;
  height: 2px;
  background: var(--brand);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 43px;
  padding: 10px 17px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.15s;
}
.button:active {
  transform: translateY(1px);
}
.button.primary {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}
.button.primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}
.button.secondary {
  background: white;
  border-color: #dfe2e7;
  color: #4b5260;
}
.button.secondary:hover {
  background: #f8f9fa;
  border-color: #c7cbd2;
}
.button.small {
  min-height: 36px;
  padding: 7px 12px;
  font-size: 14px;
}
.button .icon {
  width: 17px;
  height: 17px;
}
.button.destructive {
  background: var(--red);
  color: white;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 38px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #818792;
  transition:
    background 0.15s,
    color 0.15s;
  padding: 0;
}
.icon-button:hover {
  background: #f0f2f5;
  color: var(--ink);
}
.icon-button.danger:hover {
  background: #fff0ef;
  color: var(--red);
}
.icon-button .icon {
  width: 17px;
  height: 17px;
}
.text-right {
  text-align: right;
}
.button.is-loading:before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid #ffffff60;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.button.is-loading > .icon {
  display: none;
}
.sidebar {
  width: var(--sidebar);
  position: fixed;
  inset: 0 auto 0 0;
  background: white;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 34px 20px 18px;
  z-index: 30;
}
.brand {
  display: block;
  padding: 0 8px 32px;
}
.brand img {
  width: 183px;
  display: block;
}
.brand > span {
  display: block;
  color: #6d7582;
  letter-spacing: 0.23em;
  font-size: 11px;
  font-weight: 650;
  padding: 9px 0 0 58px;
}
.workspace-label {
  color: #6d7582;
  font-size: 11px;
  letter-spacing: 0.115em;
  font-weight: 650;
  padding: 0 12px;
  margin: 6px 0 13px;
}
.main-nav {
  display: grid;
  gap: 7px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 45px;
  border-radius: 8px;
  padding: 10px 12px;
  color: #707783;
  font-size: 14px;
  font-weight: 550;
  border: 0;
  width: 100%;
  background: transparent;
  text-align: left;
  transition:
    background 0.15s,
    color 0.15s;
}
.nav-item .icon {
  width: 19px;
  height: 19px;
}
.nav-item:hover {
  background: #f7f8fa;
  color: var(--ink);
}
.nav-item.selected {
  background: var(--brand-soft);
  color: var(--brand-text);
}
.nav-item.selected .icon {
  color: var(--brand);
}
.sidebar-bottom {
  margin-top: auto;
  padding-top: 48px;
}
.sidebar-note {
  background: #faf9f7;
  border: 1px solid #f0eeea;
  border-radius: 10px;
  padding: 17px 15px 19px;
  margin-bottom: 23px;
}
.small-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  background: #ffeadc;
  color: var(--brand);
  border-radius: 8px;
  margin-bottom: 13px;
}
.small-icon .icon {
  width: 16px;
  height: 16px;
}
.sidebar-note strong {
  font-size: 14px;
  line-height: 1.65;
  display: block;
  font-weight: 600;
}
.sidebar-note p {
  font-size: 13px;
  line-height: 1.8;
  color: #6d7582;
  margin-top: 8px;
}
.logout {
  margin-top: 6px;
}
.sidebar-footer {
  border-top: 1px solid var(--border);
  padding: 18px 10px 0;
  margin-top: 17px;
  font-size: 12px;
  color: #6d7582;
  display: flex;
  justify-content: space-between;
}
.sidebar-footer span {
  font-size: 11px;
  color: #6d7582;
}
.app-shell {
  margin-left: var(--sidebar);
}
.topbar {
  height: 79px;
  border-bottom: 1px solid var(--border);
  background: #ffffffc9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  gap: 20px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #6d7582;
  font-size: 13px;
}
.breadcrumb .icon {
  width: 12px;
  height: 12px;
}
.breadcrumb strong {
  font-weight: 500;
  color: #575f6d;
}
.profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.profile-avatar {
  background: #fff0e6;
  border: 1px solid #faddc9;
  color: #bb4c11;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
}
.profile > div {
  display: flex;
  flex-direction: column;
  line-height: 1.65;
}
.profile strong {
  font-size: 13px;
  font-weight: 600;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile div > span {
  font-size: 11px;
  color: #6d7582;
}
.mobile-menu {
  display: none;
}
.main-content {
  max-width: 1540px;
  margin: auto;
  padding: 34px 38px 0;
}
.page-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 27px;
}
.page-heading .eyebrow {
  font-size: 11px;
  margin-bottom: 7px;
}
.page-heading h1 {
  font-size: 29px;
  font-weight: 650;
  letter-spacing: -0.045em;
}
.page-heading p {
  margin-top: 8px;
  color: #6d7582;
  font-size: 14px;
}
.heading-help {
  font-size: 13px;
  min-height: 37px;
  padding: 9px 13px;
}
.heading-help .icon {
  width: 16px;
  height: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 25px;
}
.stat-card {
  position: relative;
  min-height: 115px;
  border: 1px solid var(--border);
  background: white;
  border-radius: var(--radius);
  padding: 21px 21px 16px;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  align-items: start;
  box-shadow: var(--shadow);
}
.stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
}
.stat-icon.orange {
  background: var(--brand-soft);
  color: var(--brand);
}
.stat-icon.blue {
  background: var(--blue-soft);
  color: var(--blue);
}
.stat-icon.green {
  background: var(--green-soft);
  color: var(--green);
}
.stat-icon .icon {
  width: 20px;
  height: 20px;
}
.stat-card > div {
  display: flex;
  flex-direction: column;
}
.stat-card > div > span {
  font-size: 13px;
  color: #6d7582;
}
.stat-card strong {
  font-size: 27px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.stat-description {
  grid-column: 2;
  font-size: 12px;
  color: #6d7582;
  margin-top: 1px;
}
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.create-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(245px, 0.43fr);
  gap: 22px;
  margin-bottom: 28px;
  scroll-margin-top: 25px;
}
.create-card {
  padding: 24px;
}
.card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
}
.title-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f8f9fb;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #edf0f3;
  color: #707988;
}
.title-icon .icon {
  width: 18px;
  height: 18px;
}
.card-title h2 {
  font-size: 16px;
  letter-spacing: -0.025em;
}
.card-title p {
  font-size: 13px;
  color: #6d7582;
  margin-top: 4px;
}
.create-form {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.field label {
  font-size: 13px;
  font-weight: 550;
  display: block;
  margin-bottom: 8px;
  color: #525968;
}
.required {
  color: var(--brand);
}
.optional {
  font-size: 12px;
  color: #6d7582;
  font-weight: 400;
  margin-left: 3px;
}
.input-icon {
  position: relative;
}
.input-icon > svg {
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: #6d7582;
  pointer-events: none;
}
.input-icon > input {
  padding-left: 39px;
}
.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 17px;
}
.slug-input {
  display: flex;
  align-items: stretch;
  border: 1px solid #dfe2e7;
  border-radius: 8px;
  overflow: hidden;
}
.slug-input > span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: #6d7582;
  border-right: 1px solid #e8eaed;
  padding: 0 14px;
  font-size: 14px;
}
.slug-input input {
  border: 0;
  border-radius: 0;
  height: 43px;
  font-size: 14px;
}
.slug-input:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px #e9550d0b;
}
.slug-input:has([aria-invalid="true"]) {
  border-color: var(--red);
}
.field-hint {
  font-size: 11px;
  color: #6d7582;
  margin-top: 6px;
}
.field-error {
  font-size: 13px;
  color: var(--red);
  margin-top: 7px;
}
.mode-fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
.mode-fieldset legend {
  padding: 0;
  font-size: 13px;
  font-weight: 550;
  margin-bottom: 9px;
  color: #525968;
}
.mode-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mode-option {
  border: 1px solid #e2e5ea;
  border-radius: 9px;
  position: relative;
  padding: 14px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  transition:
    border-color 0.16s,
    background 0.16s;
}
.mode-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
  margin: 0;
}
.mode-option:has(input:focus-visible) {
  outline: 3px solid #e9550d70;
  outline-offset: 3px;
}
.mode-option:has(input:checked) {
  border-color: #ed895d;
  background: #fffaf6;
}
.mode-content {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.mode-icon {
  color: #8d95a2;
  display: flex;
}
.mode-icon .icon {
  width: 19px;
  height: 19px;
}
.mode-option:has(input:checked) .mode-icon {
  color: var(--brand);
}
.mode-content strong {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
}
.mode-content em {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  color: #b65d2b;
  background: #ffeddf;
  border-radius: 4px;
  padding: 2px 5px;
  white-space: nowrap;
}
.mode-content small {
  display: block;
  color: #6d7582;
  font-size: 11px;
  margin-top: 3px;
}
.radio-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #d4d9e0;
  flex-shrink: 0;
  background: white;
}
.mode-option:has(input:checked) .radio-indicator {
  border: 4px solid var(--brand);
}
.form-actions {
  border-top: 1px solid #f0f1f3;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #6d7582;
}
.form-note .icon {
  width: 13px;
  height: 13px;
}
.form-actions > div {
  display: flex;
  gap: 8px;
}
.form-actions .button {
  font-size: 13px;
  min-height: 40px;
  padding: 10px 17px;
}
.preview-card {
  background: #292c32;
  border: 1px solid #292c32;
  border-radius: var(--radius);
  padding: 28px 24px 19px;
  color: white;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.preview-card:after {
  content: "";
  position: absolute;
  width: 245px;
  height: 245px;
  border: 1px solid #ffffff07;
  border-radius: 50%;
  right: -170px;
  top: 68px;
  box-shadow:
    0 0 0 35px #ffffff03,
    0 0 0 70px #ffffff02;
  pointer-events: none;
}
.preview-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.09em;
  color: #9fa2aa;
  font-weight: 550;
}
.preview-eyebrow > span {
  width: 5px;
  height: 5px;
  background: #f98a50;
  border-radius: 50%;
}
.preview-card h2 {
  font-size: 27px;
  font-weight: 550;
  letter-spacing: -0.04em;
  line-height: 1.5;
  margin-top: 27px;
}
.preview-card h2 > span {
  color: #f89d68;
}
.preview-card > p {
  font-size: 13px;
  color: #979ba5;
  line-height: 1.85;
  margin-top: 10px;
}
.preview-visual {
  margin: 25px 0 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 15px;
}
.preview-link-icon {
  width: 49px;
  height: 49px;
  background: #ee6c27;
  border: 1px solid #fa975f;
  border-radius: 14px;
  display: grid;
  place-items: center;
  transform: rotate(-12deg);
  margin-left: 8px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 16px #15171e38;
}
.preview-link-icon .icon {
  width: 25px;
  height: 25px;
}
.preview-url {
  margin-top: -14px;
  margin-left: 24px;
  border: 1px solid #55585e;
  border-radius: 10px;
  padding: 23px 18px 17px;
  transform: rotate(3deg);
  background: #383b42;
  width: calc(100% - 28px);
  box-shadow: 0 12px 16px #181a212e;
  overflow: hidden;
}
.preview-url > span {
  font-size: 11px;
  color: #939aa5;
}
.preview-url strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #fbaf80;
  margin-top: 5px;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}
.preview-bottom {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #ffffff10;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.preview-bottom > span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #b2b7bf;
}
.preview-bottom .icon {
  width: 11px;
  height: 11px;
  color: #f29c6e;
}
.preview-tag {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #9299a4;
  border: 1px solid #51545b;
  border-radius: 4px;
  padding: 4px 5px;
}
.links-card {
  overflow: hidden;
  scroll-margin-top: 24px;
}
.list-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 24px 18px;
}
.list-heading h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.list-heading p {
  font-size: 13px;
  color: #6d7582;
  margin-top: 6px;
}
.count-badge {
  background: #f1f3f6;
  color: #6d7582;
  padding: 2px 7px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  border-radius: 5px;
  letter-spacing: 0;
}
.search-form {
  display: flex;
  gap: 5px;
  width: 280px;
  align-items: center;
}
.search-form > .input-icon {
  flex: 1;
  min-width: 0;
}
.search-form input {
  height: 36px;
  font-size: 13px;
  background: #fcfcfd;
}
.search-form input::placeholder {
  font-size: 12px;
}
.search-form .icon {
  width: 14px;
  height: 14px;
}
.search-form .icon-button {
  width: 28px;
}
.filter-tabs {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
}
.filter-tab {
  font-size: 12px;
  color: #6d7582;
  display: flex;
  align-items: center;
  padding: 0 0 14px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
}
.filter-tab:hover {
  color: var(--ink);
}
.filter-tab.active {
  color: var(--brand-text);
  border-color: var(--brand);
  font-weight: 600;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
thead {
  background: #fcfcfd;
}
th {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6d7582;
  padding: 13px 14px;
  border-bottom: 1px solid #f0f1f4;
  white-space: nowrap;
}
th:first-child {
  padding-left: 24px;
}
th:last-child {
  padding-right: 24px;
}
td {
  padding: 17px 14px;
  border-bottom: 1px solid #f1f2f5;
  font-size: 13px;
}
td:first-child {
  padding-left: 24px;
  width: 47%;
}
td:last-child {
  padding-right: 17px;
}
tbody tr:last-child td {
  border: 0;
}
tbody tr:hover {
  background: #fefefe;
}
.link-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.row-link-icon {
  width: 34px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9ebef;
  border-radius: 9px;
  color: #6d7582;
  background: #fcfcfd;
  flex-shrink: 0;
}
.row-link-icon .icon {
  width: 15px;
  height: 15px;
}
.link-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.link-title {
  display: flex;
  gap: 7px;
  align-items: center;
}
.link-title > a {
  font-size: 13px;
  font-weight: 600;
  display: block;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.link-title > a:hover {
  color: var(--brand);
}
.short-url {
  font-size: 12px;
  color: #bb581f;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 300px;
}
.short-url:hover {
  text-decoration: underline;
}
.destination {
  font-size: 11px;
  color: #6d7582;
  display: block;
  overflow: hidden;
  max-width: 290px;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 2px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 5px;
  padding: 4px 7px;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}
.badge .icon {
  width: 11px;
  height: 11px;
}
.badge.direct {
  background: #fff4e9;
  color: #bb753d;
}
.badge.frontend {
  background: #eef2fc;
  color: #6d7faa;
}
.badge.paused {
  background: #f0f1f4;
  color: #888d96;
  font-size: 10px;
}
.click-count {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #5f6876;
  font-size: 13px;
}
.click-count .icon {
  width: 12px;
  height: 12px;
  color: #b3b9c3;
}
.date-cell {
  font-size: 12px;
  color: #6d7582;
  white-space: nowrap;
}
.row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1px;
}
.row-actions .icon-button {
  width: 29px;
  height: 34px;
}
.row-actions .icon {
  width: 14px;
  height: 14px;
}
.row-actions form {
  display: flex;
}
.list-footer {
  border-top: 1px solid #f0f1f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  color: #6d7582;
  font-size: 12px;
  gap: 12px;
}
.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination .button {
  font-size: 12px;
  min-height: 29px;
  padding: 5px 8px;
}
.empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 30px 24px 32px;
}
.empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #f7f8fa;
  border: 1px solid #eef0f3;
  border-radius: 13px;
  color: #adb3bd;
  margin-bottom: 13px;
}
.empty-icon .icon {
  width: 20px;
  height: 20px;
}
.empty-state h3 {
  font-size: 14px;
  color: #606875;
  font-weight: 550;
}
.empty-state p {
  font-size: 12px;
  color: #6d7582;
  margin-top: 6px;
  max-width: 370px;
  line-height: 1.8;
}
.empty-state .button {
  margin-top: 16px;
  font-size: 12px;
  min-height: 33px;
  padding: 7px 12px;
}
.empty-state .button .icon {
  width: 13px;
  height: 13px;
}
.main-footer {
  padding: 24px 0 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #6d7582;
  font-size: 11px;
}
.main-footer a {
  display: flex;
  gap: 7px;
  align-items: center;
}
.main-footer .icon {
  width: 11px;
  height: 11px;
}
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border-radius: 10px;
  border: 1px solid;
  font-size: 14px;
  margin-bottom: 20px;
}
.alert.success {
  border-color: #cde8d7;
  background: #f0faf4;
  color: #31714c;
}
.alert-check {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff3e6;
}
.alert strong {
  font-size: 14px;
  font-weight: 600;
}
.alert > div {
  flex: 1;
  min-width: 0;
}
.alert a {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.alert.error {
  background: #fff4f3;
  border-color: #f2d4d1;
  color: #a9423b;
  line-height: 1.7;
}
.create-form .alert {
  margin: 0;
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  padding: 13px 21px;
  border-radius: 10px;
  background: #292f38;
  color: white;
  font-size: 14px;
  box-shadow: 0 6px 24px #15203025;
  z-index: 100;
}
.clipboard-helper {
  position: fixed;
  left: -9999px;
  top: 0;
}
.confirm-dialog {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  max-width: 420px;
  width: calc(100% - 32px);
  box-shadow: 0 20px 70px #20252e25;
  color: var(--ink);
}
.confirm-dialog::backdrop {
  background: #141d3260;
  backdrop-filter: blur(3px);
}
.delete-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fff0ee;
  color: var(--red);
  border-radius: 12px;
  margin-bottom: 18px;
}
.confirm-dialog h2 {
  font-size: 22px;
}
.confirm-dialog p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 25px;
}
.login-page {
  background: white;
}
.login-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100dvh;
}
.login-story {
  background: #fff5eb;
  padding: 45px 55px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.login-story:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid #edd5bd80;
  right: -355px;
  bottom: -290px;
  box-shadow:
    0 0 0 65px #edd5bd30,
    0 0 0 130px #edd5bd18;
  pointer-events: none;
}
.login-brand {
  display: block;
  width: 196px;
}
.story-content {
  margin: auto 0;
  padding: 70px 0;
  max-width: 540px;
}
.story-content h1 {
  font-size: 46px;
  line-height: 1.4;
  font-weight: 650;
  margin-top: 22px;
  letter-spacing: -0.045em;
}
.story-content h1 > span {
  color: var(--brand);
}
.story-content > p {
  font-size: 14px;
  line-height: 1.95;
  color: #6d7582;
  margin-top: 21px;
}
.link-illustration {
  margin: 47px 0 36px;
  max-width: 420px;
}
.long-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #eaddcd;
  border-radius: 10px;
  padding: 14px 17px;
  background: #fffbf6;
  color: #6d7582;
  font-size: 14px;
  transform: rotate(-3deg);
  margin-right: 28px;
}
.long-link .icon {
  width: 17px;
  height: 17px;
}
.long-link span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.connector-line {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cead91;
}
.connector-line .icon {
  transform: rotate(90deg);
  height: 25px;
  width: 25px;
}
.short-link {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 19px 18px;
  background: white;
  box-shadow: 0 10px 28px #754c1e0a;
  border: 1px solid #eacdb3;
  border-radius: 13px;
  transform: rotate(2deg);
  margin-left: 16px;
}
.link-symbol {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--brand);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.link-symbol .icon {
  width: 23px;
  height: 23px;
}
.short-link small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #6d7582;
  margin-bottom: 3px;
}
.short-link strong {
  font-size: 19px;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: #5c4434;
}
.illustration-check {
  margin-left: auto;
  background: #f0f7ed;
  color: #72a164;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.illustration-check .icon {
  width: 13px;
  height: 13px;
}
.story-features {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.story-features span {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #9b7b63;
}
.story-features .icon {
  width: 14px;
  height: 14px;
  color: #d58148;
}
.story-footer {
  font-size: 12px;
  color: #6d7582;
}
.login-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  position: relative;
}
.login-form-wrap {
  width: 100%;
  max-width: 360px;
}
.login-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid #fce4d3;
  border-radius: 13px;
  margin-bottom: 24px;
}
.login-form-wrap h2 {
  font-size: 27px;
  letter-spacing: -0.04em;
  font-weight: 650;
}
.login-form-wrap > .muted {
  font-size: 14px;
  margin-top: 11px;
  color: #6d7582;
}
.login-form {
  margin-top: 33px;
  display: grid;
  gap: 21px;
}
.login-form .field label {
  font-size: 14px;
  margin-bottom: 9px;
}
.login-form input {
  height: 47px;
  font-size: 14px;
}
.login-form input::placeholder {
  font-size: 14px;
}
.password-input input {
  padding-right: 45px;
}
.password-input > button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.login-submit {
  margin-top: 5px;
  justify-content: space-between;
  min-height: 45px;
  font-size: 14px;
}
.login-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
  margin-top: 29px;
  color: #6d7582;
  font-size: 12px;
}
.login-security .icon {
  width: 13px;
  height: 13px;
}
.login-copyright {
  position: absolute;
  bottom: 26px;
  font-size: 12px;
  color: #6d7582;
}
.login-form-wrap .alert {
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 14px;
}
.public-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: #faf8f5;
}
.redirect-wrap {
  width: min(460px, calc(100% - 36px));
  padding: 36px 0;
}
.public-brand {
  display: block;
  width: 175px;
  margin: 0 auto 36px;
}
.public-card {
  padding: 38px 28px;
  text-align: center;
  border: 1px solid #ebe5df;
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 40px #48311b05;
}
.redirect-icon {
  width: 58px;
  height: 58px;
  border: 1px solid #ffd6ba;
  border-radius: 18px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: var(--brand-soft);
}
.redirect-icon .icon {
  width: 29px;
  height: 29px;
}
.public-card .eyebrow {
  justify-content: center;
  font-size: 11px;
}
.public-card h1 {
  font-size: 28px;
  line-height: 1.5;
  margin: 13px 0 14px;
}
.public-card > p {
  color: #6d7582;
  font-size: 14px;
  line-height: 1.8;
}
.destination-host {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  color: #545e6c;
  font-size: 14px;
  overflow-wrap: anywhere;
}
.destination-host .icon {
  width: 16px;
  height: 16px;
  color: #9da5af;
}
.destination-host strong {
  min-width: 0;
}
.redirect-progress {
  height: 3px;
  background: #f7efe9;
  border-radius: 2px;
  overflow: hidden;
  margin: 27px auto;
  width: 70%;
}
.redirect-progress span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--brand);
  border-radius: 2px;
  animation: progress 1.2s ease-in-out infinite;
}
.public-card > .button {
  margin-top: 25px;
}
.redirect-progress + .button {
  margin-top: 0;
}
.public-card .public-hint {
  font-size: 12px;
  margin-top: 16px;
}
.public-footer {
  font-size: 12px;
  color: #6d7582;
  text-align: center;
  margin-top: 25px;
}
.error-code {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.07em;
  color: #ed793f;
}
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.help-card {
  padding: 28px;
}
.help-card h2 {
  font-size: 22px;
  margin: 20px 0 18px;
}
.help-card h3 {
  margin: 20px 0 7px;
}
.help-card p,
.help-card li {
  font-size: 14px;
  color: #76808b;
  line-height: 1.95;
}
.help-card p + p {
  margin-top: 12px;
}
.help-card ol {
  padding-left: 20px;
  margin: 0 0 23px;
  display: grid;
  gap: 12px;
}
.help-card code {
  font-size: 0.85em;
  background: #f5f6f8;
  color: #676d77;
  padding: 2px 4px;
  border-radius: 4px;
  overflow-wrap: anywhere;
}
.help-card .button {
  font-size: 14px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes progress {
  from {
    transform: translateX(-110%);
  }
  to {
    transform: translateX(360%);
  }
}
@media (min-width: 1600px) {
  .main-content {
    padding-top: 42px;
  }
  .create-grid {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.45fr);
  }
  .create-card {
    padding: 28px;
  }
  .preview-card {
    padding: 32px;
  }
  .create-form {
    gap: 24px;
  }
}
@media (max-width: 1200px) {
  :root {
    --sidebar: 210px;
  }
  .sidebar {
    padding-left: 14px;
    padding-right: 14px;
  }
  .brand img {
    width: 166px;
  }
  .brand > span {
    padding-left: 51px;
  }
  .main-content {
    padding: 28px 25px 0;
  }
  .topbar {
    padding: 0 25px;
  }
  .create-grid {
    grid-template-columns: minmax(0, 1fr) 255px;
    gap: 17px;
  }
  .create-card {
    padding: 20px;
  }
  .preview-card {
    padding: 26px 20px 18px;
  }
  .preview-card h2 {
    font-size: 25px;
  }
  .form-note {
    display: none;
  }
  .form-actions {
    justify-content: flex-end;
  }
  .mode-content em {
    display: none;
  }
  .stats-grid {
    gap: 14px;
  }
  .stat-card {
    padding: 18px 15px 14px;
    column-gap: 11px;
  }
  .short-url {
    max-width: 210px;
  }
  .link-title > a {
    max-width: 180px;
  }
  .destination {
    max-width: 210px;
  }
  .date-cell,
  th:nth-child(4) {
    display: none;
  }
  .row-actions .icon-button {
    width: 28px;
  }
  .login-story {
    padding-left: 40px;
    padding-right: 40px;
  }
  .story-content h1 {
    font-size: 39px;
  }
}
@media (max-width: 1023px) {
  .create-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .preview-card {
    display: none;
  }
  .stats-grid {
    gap: 12px;
  }
  .stat-card {
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
  }
  .stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .stat-icon .icon {
    width: 17px;
    height: 17px;
  }
  .stat-description {
    font-size: 10px;
  }
  .stat-card > div > span {
    font-size: 12px;
  }
  .page-heading h1 {
    font-size: 26px;
  }
  .heading-help {
    display: none;
  }
  .login-story {
    padding: 35px 30px 25px;
  }
  .story-content h1 {
    font-size: 33px;
  }
  .story-content > p br {
    display: none;
  }
  .short-link {
    padding: 16px 13px;
    gap: 10px;
    margin-left: 0;
  }
  .short-link strong {
    font-size: 16px;
  }
  .story-features {
    gap: 12px;
  }
  .long-link {
    margin-right: 0;
  }
  .link-illustration {
    margin-top: 35px;
  }
  .help-grid {
    grid-template-columns: 1fr;
  }
  .help-card p,
  .help-card li {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  :root {
    --sidebar: 230px;
  }
  .sidebar {
    transform: translateX(-100%);
    transition: transform 0.2s;
    top: 67px;
    padding-top: 24px;
    box-shadow: 10px 8px 30px #1b263019;
    max-height: calc(100dvh - 67px);
    overflow-y: auto;
  }
  .menu-open .sidebar {
    transform: translateX(0);
  }
  .sidebar .brand {
    display: none;
  }
  .sidebar-note {
    display: none;
  }
  .sidebar-bottom {
    padding-top: 50px;
  }
  .app-shell {
    margin: 0;
  }
  .topbar {
    height: 67px;
    padding: 0 18px;
  }
  .mobile-menu {
    display: flex;
  }
  .breadcrumb {
    gap: 8px;
    font-size: 12px;
  }
  .breadcrumb > span,
  .breadcrumb > .icon {
    display: none;
  }
  .breadcrumb .mobile-menu .icon {
    width: 20px;
    height: 20px;
  }
  .profile > div > span {
    font-size: 11px;
  }
  .profile strong {
    max-width: 100px;
  }
  .profile-avatar {
    height: 30px;
    width: 30px;
    font-size: 13px;
  }
  .profile {
    gap: 7px;
  }
  .main-content {
    padding: 25px 18px 0;
  }
  .page-heading {
    margin-bottom: 22px;
  }
  .page-heading h1 {
    font-size: 25px;
  }
  .page-heading p {
    font-size: 13px;
    line-height: 1.8;
  }
  .page-heading .eyebrow {
    font-size: 10px;
  }
  .stats-grid {
    gap: 9px;
    margin-bottom: 20px;
  }
  .stat-card {
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 118px;
  }
  .stat-card .stat-icon {
    width: 29px;
    height: 29px;
    border-radius: 9px;
  }
  .stat-card .stat-icon .icon {
    width: 15px;
    height: 15px;
  }
  .stat-card > div > span {
    font-size: 11px;
  }
  .stat-card strong {
    font-size: 23px;
  }
  .stat-description {
    display: none;
  }
  .create-card {
    padding: 19px 17px;
  }
  .card-title h2 {
    font-size: 16px;
  }
  .card-title p {
    font-size: 12px;
  }
  .title-icon {
    width: 33px;
    height: 33px;
  }
  .create-form {
    gap: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  input,
  .slug-input input {
    font-size: 16px;
    height: 46px;
  }
  input::placeholder {
    font-size: 14px;
  }
  .field label {
    font-size: 14px;
  }
  .optional {
    font-size: 12px;
  }
  .field-hint {
    font-size: 12px;
  }
  .mode-options {
    gap: 8px;
  }
  .mode-option {
    padding: 13px 10px;
  }
  .mode-content {
    gap: 8px;
  }
  .mode-icon .icon {
    width: 17px;
    height: 17px;
  }
  .mode-content strong {
    font-size: 13px;
  }
  .mode-content small {
    font-size: 10px;
  }
  .mode-fieldset legend {
    font-size: 14px;
  }
  .radio-indicator {
    width: 13px;
    height: 13px;
  }
  .form-actions > div {
    width: 100%;
  }
  .form-actions .button.primary {
    flex: 1;
    min-height: 43px;
    font-size: 14px;
  }
  .form-actions .button.secondary {
    min-height: 43px;
  }
  .create-grid {
    margin-bottom: 22px;
  }
  .list-heading {
    padding: 21px 17px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .list-heading p {
    font-size: 12px;
  }
  .search-form {
    width: 100%;
    gap: 4px;
  }
  .search-form input {
    height: 40px;
    font-size: 16px;
  }
  .search-form input::placeholder {
    font-size: 13px;
  }
  .search-form .icon-button {
    width: 36px;
    height: 40px;
  }
  .filter-tabs {
    gap: 20px;
    padding: 0 17px;
    overflow-x: auto;
  }
  .filter-tab {
    font-size: 11px;
    padding-bottom: 13px;
    min-height: 32px;
  }
  .empty-state {
    padding: 28px 18px;
  }
  .empty-state p {
    font-size: 12px;
  }
  .empty-state .button {
    min-height: 40px;
    font-size: 13px;
  }
  .table-wrap table,
  .table-wrap tbody {
    display: block;
  }
  .table-wrap thead {
    display: none;
  }
  .table-wrap tr {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 17px;
    border-bottom: 1px solid var(--border);
  }
  .table-wrap td {
    display: block;
    border: 0;
    padding: 0;
  }
  .table-wrap td:first-child {
    grid-column: 1 / -1;
    width: 100%;
    padding: 0;
    margin-bottom: 13px;
  }
  .table-wrap td:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
    align-self: center;
  }
  .table-wrap td:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
    margin-top: 7px;
  }
  .table-wrap td:last-child {
    grid-column: 2;
    grid-row: 2 / 4;
    padding: 0;
    align-self: center;
  }
  .table-wrap .date-cell {
    display: none;
  }
  .row-actions .icon-button {
    width: 36px;
    height: 42px;
  }
  .row-actions .icon {
    width: 16px;
    height: 16px;
  }
  .link-info {
    width: calc(100% - 50px);
  }
  .link-title > a,
  .short-url,
  .destination {
    max-width: 100%;
  }
  .link-title > a {
    font-size: 14px;
  }
  .short-url {
    font-size: 13px;
  }
  .destination {
    font-size: 12px;
  }
  .badge {
    font-size: 12px;
  }
  .link-cell {
    min-width: 0;
  }
  .list-footer {
    padding: 13px 17px;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
  }
  .list-footer .pagination .button {
    min-height: 36px;
  }
  .main-footer {
    font-size: 10px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 21px 0;
  }
  .alert {
    padding: 14px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .alert.success > .button {
    margin-left: 38px;
  }
  .alert strong {
    font-size: 13px;
  }
  .login-layout {
    grid-template-columns: 1fr;
  }
  .login-story {
    padding: 27px 28px 25px;
  }
  .login-brand {
    width: 158px;
  }
  .story-content {
    padding: 30px 0 0;
  }
  .story-content .eyebrow,
  .story-content > p,
  .link-illustration,
  .story-features,
  .story-footer {
    display: none;
  }
  .story-content h1 {
    font-size: 28px;
    margin-top: 0;
    line-height: 1.4;
  }
  .login-form-panel {
    padding: 34px 28px 70px;
    align-items: flex-start;
  }
  .login-form-wrap {
    max-width: 460px;
  }
  .login-icon {
    display: none;
  }
  .login-form-wrap h2 {
    font-size: 24px;
  }
  .login-form-wrap > .muted {
    font-size: 14px;
  }
  .login-form {
    margin-top: 26px;
  }
  .login-form input {
    font-size: 16px;
  }
  .login-form .field label {
    font-size: 14px;
  }
  .login-submit {
    font-size: 14px;
  }
  .login-copyright {
    bottom: 22px;
  }
  .public-card {
    padding: 30px 22px;
  }
  .public-card h1 {
    font-size: 25px;
  }
  .public-card > p {
    font-size: 14px;
  }
  .public-hint {
    font-size: 13px !important;
  }
  .help-card {
    padding: 23px;
  }
  .help-card h2 {
    font-size: 20px;
  }
  .help-card p,
  .help-card li {
    font-size: 14px;
  }
  .help-card .button {
    min-height: 44px;
  }
  .confirm-dialog {
    padding: 24px;
  }
  .confirm-dialog h2 {
    font-size: 21px;
  }
  .confirm-dialog p {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Keep navigation focusable only while the mobile menu is open. */
@media (max-width: 767px) {
  .sidebar {
    visibility: hidden;
  }
  .menu-open .sidebar {
    visibility: visible;
  }
  .row-actions .icon-button {
    width: 40px;
    height: 44px;
  }
  .mobile-menu {
    width: 44px;
    height: 44px;
  }
  .mode-content {
    flex-wrap: wrap;
  }
  .radio-indicator {
    margin-left: auto;
  }
}
