
.locale-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}
.locale-switch-btn__label {
  line-height: 1;
}
.locale-switch-btn__caret {
  font-size: 0.625rem;
  line-height: 1;
  opacity: 0.8;
}
.locale-switch-btn--icon {
  padding: 0;
}
.locale-switch-btn--icon .locale-switch-btn__icon {
  font-size: 1rem;
  line-height: 1;
}
.no-flex-gap .locale-switch-btn > * + * {
  margin-left: 6px;
}


.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  min-height: var(--top-header-height);
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid #e5e7eb;
  background: rgba(247, 249, 252, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(226, 232, 240, 0.9);
}
.top-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex-shrink: 0;
}
.top-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #0f172a;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.top-brand img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  flex-shrink: 0;
}
.top-brand span {
  white-space: nowrap;
  font-size: 0.9rem;
}
.left-nav-collapse,
.mobile-nav-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #ffffff;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.left-nav-collapse:hover,
.mobile-nav-toggle:hover {
  border-color: #bfdbfe;
  color: #2563eb;
  background: #f8fbff;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
}
.top-menu-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex: 1;
  min-width: 0;
  margin-left: auto;
}
.top-header-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 8px;
}
.top-header-controls .icon-btn,
.top-header-controls .locale-btn {
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border-radius: 8px;
}
.top-header-controls .locale-btn {
  gap: 0;
}
.top-header-controls .locale-btn i {
  margin: 0;
}
.top-header-controls .icon-btn i {
  font-size: 1rem;
  line-height: 1;
}
.top-header-controls [data-tooltip]:not([data-tooltip=""]) {
  position: relative;
}
.top-header-controls [data-tooltip]:not([data-tooltip=""])::before,
.top-header-controls [data-tooltip]:not([data-tooltip=""])::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
  z-index: 120;
}
.top-header-controls [data-tooltip]:not([data-tooltip=""])::before {
  content: "";
  top: calc(100% + 2px);
  transform: translateX(-50%) translateY(-4px);
  border-width: 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent rgba(15, 23, 42, 0.92);
}
.top-header-controls [data-tooltip]:not([data-tooltip=""])::after {
  content: attr(data-tooltip);
  top: calc(100% + 7px);
  transform: translateX(-50%) translateY(-4px);
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.92);
  color: #f8fafc;
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.2);
}
.top-header-controls .locale-switch-btn--edge-tooltip[data-tooltip]:not([data-tooltip=""])::before {
  left: auto;
  right: 11px;
  transform: translateY(-4px);
}
.top-header-controls .locale-switch-btn--edge-tooltip[data-tooltip]:not([data-tooltip=""])::after {
  left: auto;
  right: 0;
  transform: translateY(-4px);
  width: -moz-max-content;
  width: max-content;
  max-width: min(18rem, calc(100vw - 24px));
  white-space: normal;
  text-align: center;
}
@media (hover: hover) {
.top-header-controls [data-tooltip]:not([data-tooltip=""]):hover::before,
  .top-header-controls [data-tooltip]:not([data-tooltip=""]):hover::after,
  .top-header-controls [data-tooltip]:not([data-tooltip=""]):focus-visible::before,
  .top-header-controls [data-tooltip]:not([data-tooltip=""]):focus-visible::after {
    opacity: 1;
}
.top-header-controls [data-tooltip]:not([data-tooltip=""]):hover::before,
  .top-header-controls [data-tooltip]:not([data-tooltip=""]):focus-visible::before,
  .top-header-controls [data-tooltip]:not([data-tooltip=""]):hover::after,
  .top-header-controls [data-tooltip]:not([data-tooltip=""]):focus-visible::after {
    transform: translateX(-50%) translateY(0);
}
.top-header-controls .locale-switch-btn--edge-tooltip[data-tooltip]:not([data-tooltip=""]):hover::before,
  .top-header-controls .locale-switch-btn--edge-tooltip[data-tooltip]:not([data-tooltip=""]):focus-visible::before,
  .top-header-controls .locale-switch-btn--edge-tooltip[data-tooltip]:not([data-tooltip=""]):hover::after,
  .top-header-controls .locale-switch-btn--edge-tooltip[data-tooltip]:not([data-tooltip=""]):focus-visible::after {
    transform: translateY(0);
}
}
.menu-item {
  padding: 7px 10px;
  border-radius: 999px;
  color: #475569;
  text-decoration: none;
  font-size: 0.84375rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}
.menu-item:hover {
  color: #2563eb;
  background: #eff6ff;
}
.menu-item.active {
  color: #2563eb;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px #dbeafe;
}
.mobile-nav-toggle {
  display: none;
}
.no-flex-gap .top-header-left > * + * {
  margin-left: 6px;
}
.no-flex-gap .top-brand > * + * {
  margin-left: 6px;
}
.no-flex-gap .top-menu-box > * + * {
  margin-left: 2px;
}
.no-flex-gap .top-header > .top-menu-box + .top-header-controls {
  margin-left: calc(8px + 0.6rem);
}
.no-flex-gap .top-header-controls > * + * {
  margin-left: 6px;
}
html.dark .top-header,
html[theme-mode="dark"] .top-header {
  border-bottom-color: rgba(17, 24, 39, 0.96);
  background: rgba(17, 24, 39, 0.96);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.96);
}
html.dark .top-brand,
html[theme-mode="dark"] .top-brand {
  color: #f8fafc;
}
html.dark .top-brand img,
html[theme-mode="dark"] .top-brand img,
html.dark .left-nav-collapse,
html.dark .mobile-nav-toggle,
html[theme-mode="dark"] .left-nav-collapse,
html[theme-mode="dark"] .mobile-nav-toggle {
  border-color: rgba(71, 85, 105, 0.82);
  background: rgba(31, 43, 61, 0.96);
  color: #cbd5e1;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.18);
}
html.dark .left-nav-collapse:hover,
html.dark .mobile-nav-toggle:hover,
html[theme-mode="dark"] .left-nav-collapse:hover,
html[theme-mode="dark"] .mobile-nav-toggle:hover {
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(45, 60, 84, 0.96);
  color: #eff6ff;
}
html.dark .menu-item,
html[theme-mode="dark"] .menu-item {
  color: #cbd5e1;
}
html.dark .top-header-controls .icon-btn,
html.dark .top-header-controls .locale-btn,
html[theme-mode="dark"] .top-header-controls .icon-btn,
html[theme-mode="dark"] .top-header-controls .locale-btn {
  border-color: rgba(71, 85, 105, 0.82);
  background: rgba(31, 43, 61, 0.96);
  color: #cbd5e1;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.18);
}
html.dark .top-header-controls .icon-btn:hover,
html.dark .top-header-controls .locale-btn:hover,
html[theme-mode="dark"] .top-header-controls .icon-btn:hover,
html[theme-mode="dark"] .top-header-controls .locale-btn:hover {
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(45, 60, 84, 0.96);
  color: #eff6ff;
}
html.dark .top-header-controls [data-tooltip]:not([data-tooltip=""])::before,
html[theme-mode="dark"] .top-header-controls [data-tooltip]:not([data-tooltip=""])::before {
  border-color: transparent transparent rgba(15, 23, 42, 0.96);
}
html.dark .top-header-controls [data-tooltip]:not([data-tooltip=""])::after,
html[theme-mode="dark"] .top-header-controls [data-tooltip]:not([data-tooltip=""])::after {
  background: rgba(15, 23, 42, 0.96);
  color: #e2e8f0;
  box-shadow: 0 8px 18px rgba(2, 6, 23, 0.34);
}
html.dark .menu-item:hover,
html.dark .menu-item.active,
html[theme-mode="dark"] .menu-item:hover,
html[theme-mode="dark"] .menu-item.active {
  color: #93c5fd;
  background: rgba(31, 43, 61, 0.96);
  box-shadow: inset 0 0 0 1px rgba(96, 165, 250, 0.18);
}
@media (max-width: 767px) {
.top-header {
    min-height: var(--top-header-height);
    padding: 0 var(--page-gutter);
}
.top-brand span,
  .left-nav-collapse,
  .top-menu-box {
    display: none;
}
.top-header-controls {
    margin-left: auto;
    gap: 4px;
}
.no-flex-gap .top-header > .top-menu-box + .top-header-controls {
    margin-left: auto;
}
.no-flex-gap .top-header-controls > * + * {
    margin-left: 4px;
}
.no-flex-gap .top-header > .top-header-controls + .mobile-nav-toggle,
  .no-flex-gap .top-header > .top-menu-box + .mobile-nav-toggle {
    margin-left: calc(4px + 0.6rem);
}
.mobile-nav-toggle {
    display: inline-flex;
    margin-left: 4px;
}
.top-brand img {
    width: 28px;
    height: 28px;
}
}


.tool-markdown-doc {
  color: #374151;
  border: 0;
  border-radius: 0;
  padding: 0 0 var(--tool-section-padding, 24px);
  background: transparent;
  box-shadow: none;
}
.tool-markdown-divider {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: 1.5rem 0 1.5rem;
}
html.dark .tool-markdown-doc,
html[theme-mode="dark"] .tool-markdown-doc {
  color: rgb(209, 213, 219);
}
html.dark .tool-markdown-divider,
html[theme-mode="dark"] .tool-markdown-divider {
  border-top-color: #374151;
}
.tool-markdown-header {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.tool-markdown-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
  color: #fff;
}
.tool-markdown-title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
}
html.dark .tool-markdown-title,
html[theme-mode="dark"] .tool-markdown-title {
  color: rgb(243, 244, 246);
}
.tool-markdown-body h1,
.tool-markdown-body h2,
.tool-markdown-body h3,
.tool-markdown-body h4,
.tool-markdown-body h5,
.tool-markdown-body h6 {
  margin: 1.5rem 0 1rem;
  font-weight: 700;
  color: #24292f;
  line-height: 1.35;
}
.tool-markdown-body h1 {
  font-size: 2em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #d8dee4;
}
.tool-markdown-body h2 {
  font-size: 1.5em;
  padding-bottom: 0.3em;
  border-bottom: 1px solid #d8dee4;
}
.tool-markdown-body h3 {
  font-size: 1.1em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: 100%;
  padding: 0 0 0.5rem;
  border: 0;
  border-bottom: 1px solid #d0d7de;
  background: transparent;
}
.tool-markdown-body .tool-markdown-h3-icon {
  font-size: 0.8em;
  color: var(--tool-doc-accent-color, #6366f1);
  margin-top: 0;
}
.no-flex-gap .tool-markdown-body h3 > * + * {
  margin-left: 0.45rem;
}
.tool-markdown-body h4 {
  font-size: 1em;
}
.tool-markdown-body h5 {
  font-size: 0.875em;
}
.tool-markdown-body h6 {
  font-size: 0.85em;
  color: #57606a;
}
html.dark .tool-markdown-body h1,
html.dark .tool-markdown-body h2,
html.dark .tool-markdown-body h3,
html.dark .tool-markdown-body h4,
html.dark .tool-markdown-body h5,
html.dark .tool-markdown-body h6,
html[theme-mode="dark"] .tool-markdown-body h1,
html[theme-mode="dark"] .tool-markdown-body h2,
html[theme-mode="dark"] .tool-markdown-body h3,
html[theme-mode="dark"] .tool-markdown-body h4,
html[theme-mode="dark"] .tool-markdown-body h5,
html[theme-mode="dark"] .tool-markdown-body h6 {
  color: #f0f6fc;
}
html.dark .tool-markdown-body h1,
html.dark .tool-markdown-body h2,
html[theme-mode="dark"] .tool-markdown-body h1,
html[theme-mode="dark"] .tool-markdown-body h2 {
  border-bottom-color: #30363d;
}
html.dark .tool-markdown-body h3,
html[theme-mode="dark"] .tool-markdown-body h3 {
  border-bottom-color: #30363d;
}
.tool-markdown-body h1:first-child,
.tool-markdown-body h2:first-child,
.tool-markdown-body h3:first-child {
  margin-top: 0;
}
.tool-markdown-body p {
  margin: 0 0 1rem;
  line-height: 1.85;
}
.tool-markdown-body *:last-child {
  margin-bottom: 0;
}
.tool-markdown-body ul,
.tool-markdown-body ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.tool-markdown-body ul {
  list-style: disc;
}
.tool-markdown-body ol {
  list-style: decimal;
}
.tool-markdown-body li {
  line-height: 1.8;
}
.tool-markdown-body li + li {
  margin-top: 0.45rem;
}
.tool-markdown-body code {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
}
.tool-markdown-body :not(pre) > code {
  padding: 0.2em 0.4em;
  border-radius: 0.375rem;
  background: rgba(175, 184, 193, 0.2);
  font-size: 85%;
}
html.dark .tool-markdown-body :not(pre) > code,
html[theme-mode="dark"] .tool-markdown-body :not(pre) > code {
  background: rgba(110, 118, 129, 0.4);
}
.tool-markdown-body a {
  color: #0969da;
  text-decoration: none;
}
.tool-markdown-body a:hover {
  text-decoration: underline;
}
html.dark .tool-markdown-body a,
html[theme-mode="dark"] .tool-markdown-body a {
  color: #58a6ff;
}


.tool-privacy-notice {
  margin: 0;
  padding: 0;
  pointer-events: none;
}
.tool-privacy-notice__badge-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: auto;
}
.tool-privacy-notice__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
.tool-privacy-notice__badge:hover,
.tool-privacy-notice__badge-wrap.is-open .tool-privacy-notice__badge {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.16);
}
.tool-privacy-notice__lock {
  font-size: 0.875rem;
  line-height: 1;
}
.tool-privacy-notice__badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.no-flex-gap .tool-privacy-notice__badge > * + * {
  margin-left: 0.5rem;
}
.tool-privacy-notice__popover {
  width: min(24rem, calc(100vw - 3rem));
  padding: 0.75rem 0.875rem;
  border: 1px solid rgba(180, 83, 9, 0.16);
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.98);
  color: #111827;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}
.tool-privacy-notice__popover--fixed {
  position: fixed;
  z-index: 9999;
}
.tool-privacy-notice__popover-title {
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
}
.tool-privacy-notice__popover-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #475569;
}
html.dark .tool-privacy-notice__popover,
html[theme-mode="dark"] .tool-privacy-notice__popover {
  background: rgba(30, 41, 59, 0.92);
  border-color: rgba(180, 83, 9, 0.22);
  color: #f8fafc;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.36);
}
html.dark .tool-privacy-notice__popover-title,
html[theme-mode="dark"] .tool-privacy-notice__popover-title {
  color: #f8fafc;
}
html.dark .tool-privacy-notice__popover-text,
html[theme-mode="dark"] .tool-privacy-notice__popover-text {
  color: rgba(226, 232, 240, 0.88);
}
@media (max-width: 768px) {
.tool-privacy-notice__badge {
    justify-content: center;
    gap: 0;
    width: 2.5rem;
    min-width: 2.5rem;
    height: 2.5rem;
    min-height: 2.5rem;
    padding: 0;
    border-radius: 0.5rem;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.16);
}
.tool-privacy-notice__badge:hover,
  .tool-privacy-notice__badge-wrap.is-open .tool-privacy-notice__badge {
    transform: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.16);
}
.tool-privacy-notice__badge-text {
    display: none;
}
.tool-privacy-notice__lock {
    font-size: 0.875rem;
}
.tool-privacy-notice__popover {
    width: min(18rem, calc(100vw - 1.5rem));
}
}


.back-to-top-button[data-v-7ab46d10] {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 10001;
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 9999px;
  color: #fff;
  background: linear-gradient(to bottom right, #f43f5e, #db2777);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.back-to-top-button i[data-v-7ab46d10] {
  font-size: 1.25rem;
}
.back-to-top-button[data-v-7ab46d10]:hover {
  transform: scale(1.1);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.back-to-top-button[data-v-7ab46d10]:active {
  transform: scale(0.95);
}
@media (max-width: 768px) {
.back-to-top-button[data-v-7ab46d10] {
    width: 2.5rem;
    height: 2.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
}
.back-to-top-button i[data-v-7ab46d10] {
    font-size: 0.875rem;
}
.back-to-top-button--desktop-only[data-v-7ab46d10] {
    display: none;
}
}


.site-footer p + p[data-v-7239174a] {
  margin-top: 10px;
}
.footer-filing-line[data-v-7239174a] {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.footer-filing-main[data-v-7239174a] {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.footer-police-link[data-v-7239174a] {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.footer-police-icon[data-v-7239174a] {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: -2px;
}
@media (max-width: 640px) {
.footer-meta[data-v-7239174a] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-links[data-v-7239174a] {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.footer-filing-line[data-v-7239174a] {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.footer-filing-sep[data-v-7239174a] {
    display: none;
}
}


.tool-page-main {
  background: #ffffff;
}
html.dark .tool-page-main,
html[theme-mode="dark"] .tool-page-main {
  background: #1f2b3d;
}
html.dark.legacy-android-browser .tool-page-main,
html[theme-mode="dark"].legacy-android-browser .tool-page-main {
  background: #1f2b3d;
}
html.dark .tool-page-meta__icon,
html[theme-mode="dark"] .tool-page-meta__icon,
html.dark .tool-page-meta__favorite,
html[theme-mode="dark"] .tool-page-meta__favorite {
  border-color: rgba(71, 85, 105, 0.82);
  color: #cbd5e1;
}
html.dark .tool-page-meta__icon,
html[theme-mode="dark"] .tool-page-meta__icon {
  background: transparent;
  box-shadow: none;
  color: var(--u-tool-accent, #93c5fd);
}
html.dark .tool-page-quick-related__link,
html[theme-mode="dark"] .tool-page-quick-related__link {
  color: #94a3b8;
}
html.dark .tool-page-quick-related__link:hover,
html[theme-mode="dark"] .tool-page-quick-related__link:hover {
  color: #e2e8f0;
}
html.dark .tool-page-quick-related__link + .tool-page-quick-related__link::before,
html[theme-mode="dark"]
  .tool-page-quick-related__link
  +
  .tool-page-quick-related__link::before {
  background: rgba(148, 163, 184, 0.45);
}
html.dark .tool-page-meta__action,
html[theme-mode="dark"] .tool-page-meta__action {
  color: #cbd5e1;
}
html.dark .tool-page-meta,
html[theme-mode="dark"] .tool-page-meta {
  border-color: rgba(71, 85, 105, 0.82);
  background: transparent;
}
html.dark .tool-page-meta__title,
html[theme-mode="dark"] .tool-page-meta__title {
  color: #f8fafc;
}
html.dark .tool-page-meta__favorite:hover,
html[theme-mode="dark"] .tool-page-meta__favorite:hover {
  background: transparent;
  color: #eff6ff;
}
html.dark .tool-page-meta__action:hover,
html[theme-mode="dark"] .tool-page-meta__action:hover {
  background: rgba(30, 41, 59, 0.72);
  color: #eff6ff;
}
html.dark .tool-page-meta__favorite.is-active,
html[theme-mode="dark"] .tool-page-meta__favorite.is-active {
  background: transparent;
  color: #f9a8d4;
}
html.dark .tool-page-meta__qr-panel,
html[theme-mode="dark"] .tool-page-meta__qr-panel {
  border-color: rgba(71, 85, 105, 0.82);
  background: rgba(17, 24, 39, 0.98);
}
html.dark .tool-page-meta__qr-panel p,
html[theme-mode="dark"] .tool-page-meta__qr-panel p {
  color: #cbd5e1;
}
html.dark .tool-page-meta__qr-loading,
html[theme-mode="dark"] .tool-page-meta__qr-loading {
  color: #cbd5e1;
}
html.dark .tool-page-meta__qr-panel img,
html[theme-mode="dark"] .tool-page-meta__qr-panel img {
  background: #ffffff;
  padding: 6px;
}
.tool-content-wrap {
  width: 100%;
  max-width: var(--content-container-width);
  margin: 0 auto;
  padding: 15px var(--page-gutter) 0;
  box-sizing: border-box;
}
.tool-page-search {
  margin: 14px auto 18px;
}
.tool-page-quick-related {
  width: 100%;
  max-width: 1200px;
  margin: -2px 0 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  overflow-x: visible;
  white-space: normal;
}
.tool-page-quick-related__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tool-page-quick-related__link + .tool-page-quick-related__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: #cbd5e1;
  transform: translateY(-50%);
}
.tool-page-quick-related__link:hover {
  color: #1f2937;
}
.tool-page-quick-related__link.is-active {
  color: var(--u-tool-accent);
  font-weight: 700;
}
html.dark .tool-page-quick-related__link.is-active,
html[theme-mode="dark"] .tool-page-quick-related__link.is-active {
  color: var(--u-tool-accent, #93c5fd);
}
.tool-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  --tool-section-padding: 20px;
}
.tool-page-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 10px 16px;
  margin: 0 0 18px;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  background: #ffffff;
}
.tool-page-meta__main {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
}
.tool-page-meta__icon {
  width: 28px;
  height: 28px;
  border-radius: 0;
  border: none;
  background: transparent;
  color: var(--u-tool-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}
.tool-page-meta__icon i {
  font-size: 1.22rem;
}
.tool-page-meta__title {
  margin: 0;
  color: #111827;
  font-size: 1.45rem;
  line-height: 1.45;
  font-weight: 700;
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 100%;
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tool-page-meta__actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.tool-page-meta__notice {
  width: 100%;
  min-width: 0;
  margin-top: 2px;
}
.tool-page-meta__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  padding: 7px 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.tool-page-meta__action:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
}
.tool-page-meta__qr-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 196px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  z-index: 20;
}
.tool-page-meta__qr-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.tool-page-meta__qr-panel p {
  margin: 10px 0 0;
  color: #64748b;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
}
.tool-page-meta__qr-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  color: #64748b;
  font-size: 0.8125rem;
}
.tool-page-meta__favorite {
  color: #475569;
  font-weight: 600;
}
.tool-page-meta__favorite:hover {
  color: #2563eb;
  background: transparent;
  box-shadow: none;
}
.tool-page-meta__favorite.is-active {
  background: transparent;
  color: #db2777;
}
.tool-page-meta__favorite i {
  font-size: 0.82rem;
}
.tool-main-operation-panel {
  background: transparent;
  border: 0;
  border-radius: 0;
}
.tool-page-doc {
  margin-top: 0;
}
.related-tools-wrap {
  --related-tools-divider-gap: 28px;
  margin-top: var(--related-tools-divider-gap);
  margin-bottom: var(--related-tools-divider-gap);
}
.related-tools-divider {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 0;
}
.related-tools-divider.tool-doc-divider {
  margin: 30px 0;
}
html.dark .related-tools-divider,
html[theme-mode="dark"] .related-tools-divider {
  border-top-color: rgba(148, 163, 184, 0.35);
}
.related-tools-panel {
  margin: var(--related-tools-divider-gap) 0;
}
.related-tools-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 0;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.related-tools-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.related-tools-header h2 {
  margin: 0;
  color: #111827;
  font-size: 1.375rem;
}
html.dark .related-tools-header h2,
html[theme-mode="dark"] .related-tools-header h2 {
  color: #f8fafc;
}
.related-tools-collections {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.related-collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(99, 102, 241, 0.08);
  color: #475569;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.related-collection-link:hover {
  background: rgba(99, 102, 241, 0.14);
}
.related-collection-link > i:last-child {
  font-size: 0.75rem;
}
html.dark .related-collection-link,
html[theme-mode="dark"] .related-collection-link {
  color: #dbe2ee;
  background: rgba(99, 102, 241, 0.18);
}
html.dark .related-collection-link:hover,
html[theme-mode="dark"] .related-collection-link:hover {
  background: rgba(99, 102, 241, 0.24);
}
.related-tools-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12);
}
.related-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
}
.related-tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 10px;
  padding: 8px 10px;
  color: inherit;
  transition: background-color 0.2s ease;
}
.related-tool-item:hover {
  background: rgba(248, 250, 252, 0.9);
}
html.dark .related-tool-item:hover,
html[theme-mode="dark"] .related-tool-item:hover {
  background: rgba(51, 65, 85, 0.4);
}
.related-tool-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.related-tool-name {
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
}
html.dark .related-tool-name,
html[theme-mode="dark"] .related-tool-name {
  color: #e2e8f0;
}
.tool-toast {
  position: fixed;
  top: 16px;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translateX(-50%);
  z-index: 2147483646;
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.8125rem;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100vw - 24px);
  text-align: center;
  box-shadow: 0 14px 28px rgba(2, 6, 23, 0.3);
}
.no-flex-gap .tool-main-operation-panel > * + * {
  margin-top: 0;
}
.no-flex-gap .tool-page-meta > * + * {
  margin-left: 12px;
}
.no-flex-gap .tool-page-meta__main > * + * {
  margin-left: 12px;
}
.no-flex-gap .tool-page-meta__title {
  flex: none;
  width: auto;
  max-width: none;
  overflow: visible;
  text-overflow: clip;
}
.no-flex-gap .tool-page-meta__actions > .tool-page-meta__action + .tool-page-meta__action {
  margin-left: 4px;
}
.no-flex-gap .tool-page-meta__action > * + * {
  margin-left: 6px;
}
.no-flex-gap .tool-main-operation-panel > . {
  margin-top: 1rem;
}
.no-flex-gap .related-tools-heading > * + * {
  margin-left: 10px;
}
.no-flex-gap .related-tools-header {
  margin-top: 12px;
  margin-left: -12px;
}
.no-flex-gap .related-tools-header > * {
  margin-top: 12px;
  margin-left: 12px;
}
.no-flex-gap .related-tools-collections {
  margin-top: -10px;
  margin-left: -10px;
}
.no-flex-gap .related-tools-collections > * {
  margin-top: 10px;
  margin-left: 10px;
}
.no-flex-gap .related-tools-grid {
  display: flex;
  flex-wrap: wrap;
  margin-top: -8px;
  margin-left: -16px;
}
.no-flex-gap .related-tools-grid > * {
  width: calc(25% - 16px);
  margin-top: 8px;
  margin-left: 16px;
}
.no-flex-gap .related-collection-link > * + * {
  margin-left: 8px;
}
.no-flex-gap .related-tool-item > * + * {
  margin-left: 10px;
}
@media (min-width: 768px) {
.tool-container {
    --tool-section-padding: 24px;
}
.tool-container.tool-container--expanded {
    max-width: var(--content-max-width);
}
}
@media (max-width: 1024px) {
.related-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.no-flex-gap .related-tools-grid > * {
    width: calc(50% - 16px);
}
}
@media (max-width: 768px) {
.tool-toast {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
}
.tool-content-wrap {
    padding: 0 12px 12px 12px;
}
.tool-page-search {
    margin: 10px auto 16px;
}
.tool-page-quick-related {
    display: none;
    margin-top: -4px;
    margin-bottom: 12px;
    gap: 10px;
    padding-bottom: 2px;
}
.tool-page-quick-related__link {
    font-size: 0.875rem;
    padding-bottom: 6px;
}
.tool-page-meta {
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding: 9px 12px;
}
.tool-page-doc {
    margin-top: 0;
}
.related-tools-divider.tool-doc-divider {
    margin: 21px 0;
}
.no-flex-gap .tool-page-meta {
    display: block;
}
.no-flex-gap .tool-page-meta > * + * {
    margin-left: 0;
    margin-top: 10px;
}
.tool-page-meta__main {
    width: 100%;
    flex: 0 0 100%;
    gap: 10px;
    justify-content: center;
}
.tool-page-meta__title {
    flex: 0 1 auto;
    text-align: center;
}
.no-flex-gap .tool-page-meta__main > * + * {
    margin-left: 10px;
}
.tool-page-meta__actions {
    width: 100%;
    flex: 0 0 100%;
    justify-content: center;
    flex-wrap: nowrap;
}
.no-flex-gap .tool-page-meta__actions {
    margin-top: 10px;
    margin-left: 0;
}
.no-flex-gap .tool-page-meta__actions > .tool-page-meta__action {
    margin-top: 0;
}
.tool-page-meta__title {
    font-size: 1.28rem;
}
.tool-main-operation-panel.p-6 {
    padding-left: 12px;
    padding-right: 12px;
}
.related-tools-wrap {
    --related-tools-divider-gap: 22px;
    padding-left: 12px;
    padding-right: 12px;
}
.related-tools-panel {
    margin-top: var(--related-tools-divider-gap);
    margin-bottom: var(--related-tools-divider-gap);
    padding-left: 0;
    padding-right: 0;
}
.related-tools-grid {
    grid-template-columns: 1fr;
}
.no-flex-gap .related-tools-grid {
    margin-left: 0;
}
.no-flex-gap .related-tools-grid > * {
    width: 100%;
    margin-left: 0;
}
.related-tools-collections {
    width: 100%;
}
.no-flex-gap .related-tools-header > .related-tools-collections {
    margin-top: 16px;
}
}


