/* EZ-SITE shell — modusign-inspired, no vertical split */
:root {
  --ez-header-h: 72px;
  --ez-footer-h: 1px;
  --ez-ink: #111111;
  --ez-muted: #6b7280;
  --ez-line: #e8e8e8;
  --ez-surface: #ffffff;
  --ez-hero: #141414;
  --ez-accent: #f5c518;
  --ez-accent-ink: #111111;
  --sidebar-width: 0px;
  --header-h: 72px;
}

body.app.ez-shell {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--ez-surface);
  color: var(--ez-ink);
  font-family: "Noto Sans KR", "Pretendard", system-ui, sans-serif;
  padding-top: var(--ez-header-h);
  box-sizing: border-box;
}

/* Top menu — fixed on scroll */
.ez-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  height: var(--ez-header-h);
  min-height: var(--ez-header-h);
  max-height: var(--ez-header-h);
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 36px;
  background: #fff;
  border-bottom: 1px solid var(--ez-line);
  box-sizing: border-box;
}
.ez-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ez-ink);
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.ez-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.ez-brand span {
  font-size: 28px;
  line-height: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
}
.ez-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: auto;
}
.ez-nav a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  text-decoration: none;
  color: #333;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.ez-nav a:hover { color: #000; }
.ez-nav a.active {
  color: #000;
  border-bottom-color: var(--ez-accent);
}
.ez-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
  height: 100%;
}
.ez-header-actions .ez-link {
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  padding: 0 8px;
}
.ez-header-actions .ez-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--ez-accent);
  color: var(--ez-accent-ink);
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.ez-header-actions .ez-cta:hover { filter: brightness(0.97); }
.ez-header-actions .ez-cta-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #d0d5dd;
}
.ez-header-actions .ez-cta-secondary:hover {
  filter: none;
  background: #f8fafc;
  border-color: #98a2b3;
}
.ez-user-chip {
  font-size: 12px;
  color: var(--ez-muted);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Work area — full width, no vertical split */
.ez-workspace {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}
.ez-workspace > .site-sidebar { display: none !important; }
.ez-main {
  flex: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-height: calc(100vh - var(--ez-header-h) - var(--ez-footer-h));
}

/* Landing hero (modusign-like) */
.ez-hero {
  min-height: calc(100vh - var(--ez-header-h) - var(--ez-footer-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 80px;
  background:
    radial-gradient(ellipse 80% 50% at 70% 100%, rgba(245, 197, 24, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(255,255,255,0.06), transparent 50%),
    linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  color: #fff;
  box-sizing: border-box;
}
.ez-hero-kicker {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.78);
}
.ez-hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.ez-hero-lead {
  margin: 20px auto 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  text-align: center;
}
.ez-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.ez-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-sizing: border-box;
}
.ez-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
}
.ez-btn-ghost:hover { background: rgba(255,255,255,0.08); }
.ez-btn-primary {
  background: var(--ez-accent);
  color: var(--ez-accent-ink);
  border: 1px solid var(--ez-accent);
}
.ez-btn-primary:hover { filter: brightness(0.97); }

/* Admin/work pages inside shell: full-bleed content, no sidebar column */
body.app.ez-shell .nav-header { display: none; } /* replaced by .ez-header */
body.app.ez-shell .app-workspace {
  display: block;
  grid-template-columns: none;
  flex: 1;
  min-height: 0;
}
body.app.ez-shell .site-sidebar { display: none !important; }
body.app.ez-shell .main-content,
body.app.ez-shell .main-content--admin {
  margin-left: 0 !important;
  width: 100% !important;
  max-width: 100%;
  padding: 16px 20px 24px;
  box-sizing: border-box;
}
body.app.ez-shell .side-panel {
  left: auto;
  right: 0;
}

/* Bottom footer ??modusign-like */
.ez-footer {
  height: auto;
  min-height: 0;
  display: block;
  padding: 40px 28px 36px;
  background: #f7f7f8;
  border-top: 1px solid #ececef;
  box-sizing: border-box;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 13px;
  color: #6b7280;
  -webkit-font-smoothing: antialiased;
}
.ez-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}
.ez-footer-left,
.ez-footer-right {
  display: grid;
  grid-template-rows: 40px repeat(3, 1.9em);
  row-gap: 8px;
  align-items: center;
  min-width: 0;
}
.ez-footer-left { flex: 1 1 auto; }
.ez-footer-right {
  flex: 0 0 auto;
  justify-items: end;
  text-align: right;
  padding-top: 0;
}
.ez-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  height: 40px;
  color: #111;
  text-decoration: none;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.ez-footer-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.ez-footer-brand span {
  font-size: 28px;
  line-height: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
}
.ez-footer-meta {
  margin: 0;
  color: #6b7280;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.55;
}
.ez-footer-meta a { color: #6b7280; text-decoration: none; }
.ez-footer-meta a:hover { color: #111; text-decoration: underline; }
.ez-footer-sep { margin: 0 6px; color: #c4c4c8; }

/* footer partners */
.ez-footer-partners {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px 18px;
}
.ez-footer-partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  text-decoration: none;
  opacity: 1;
}
.ez-footer-partner img {
  display: block;
  max-height: 24px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: none;
}
.ez-footer-partner-text {
  color: #6b7280;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
@media (max-width: 860px) {
  .ez-footer-partners { justify-content: flex-start; }
}
.ez-footer-officer {
  margin: 0;
  color: #6b7280;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}
.ez-footer-legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
}
.ez-footer-legal a {
  color: #6b7280;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
.ez-footer-legal a:hover { color: #111; }
.ez-footer-legal a.ez-footer-privacy {
  color: #6b7280;
  font-weight: 500;
}
.ez-footer-copy {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  font-size: 11px;
  color: #9ca3af;
  white-space: normal;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .ez-header { padding: 0 14px; gap: 10px; }
  .ez-nav { display: none; }
  .ez-footer { padding: 28px 16px 24px; }
  .ez-footer-inner { flex-direction: column; gap: 24px; }
  .ez-footer-left,
  .ez-footer-right {
    grid-template-rows: none;
    row-gap: 8px;
  }
  .ez-footer-right { justify-items: start; text-align: left; }
  .ez-footer-partners { justify-content: flex-start; height: auto; }
  .ez-footer-legal { justify-content: flex-start; }
  .ez-footer-officer { text-align: left; }
}


/* /service — sheet hero + infinite scroll */
.ez-hero--service {
  min-height: calc(100vh - var(--ez-header-h));
  padding-top: 40px;
  padding-bottom: 64px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ez-hero--service .ez-hero-inner {
  width: 100%;
  max-width: 920px;
  margin: 2.5rem auto 0;
  transform: translateY(0.5rem);
}
.ez-hero--service > *:not(.ez-hero-inner) {
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.ez-hero--service .ez-hero-note {
  margin: calc(1.55em * 2 + 12px) auto 0;
  max-width: 640px;
  padding: 0 8px;
  font-family: "OSeongandHanEum", "Noto Sans KR", sans-serif;
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
}
.ez-hero--service .ez-hero-note--follow {
  margin-top: 1.55em;
}
.ez-hero--service h1 {
  text-align: center;
}
.ez-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  margin: 0 0 20px;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.ez-hero-tags .tag-green { color: #3ddc84; }
.ez-hero-tags .tag-blue { color: #5eb3ff; }
.ez-hero--service .ez-hero-kicker {
  max-width: 720px;
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,0.88);
}
.ez-hero--service h1 {
  margin-top: 18px;
  font-size: clamp(28px, 4.5vw, 48px);
}
.ez-hero--service .ez-hero-lead {
  margin: 28px auto 0;
  max-width: 720px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: #5eb3ff;
  text-align: center;
}

.ez-infinite {
  background: #0f0f0f;
  color: #fff;
  min-height: 40vh;
  padding: 32px 20px 80px;
  box-sizing: border-box;
}
.ez-infinite-list {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ez-infinite-item {
  padding: 20px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}
.ez-infinite-sentinel {
  height: 1px;
  width: 100%;
  margin-top: 24px;
}
.ez-infinite-end {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  padding: 24px 0;
}

/* /service page: allow document scroll (admin shell uses overflow:hidden) */
html:has(body.ez-page-service) {
  height: auto;
  overflow-y: auto;
}
body.app.ez-shell.ez-page-service {
  height: auto !important;
  min-height: 100vh;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
body.app.ez-shell.ez-page-service .app-workspace.ez-workspace {
  overflow: visible !important;
  flex: 1 0 auto;
  min-height: 0;
  height: auto;
}
body.app.ez-shell.ez-page-service .main-content.ez-main,
body.app.ez-shell.ez-page-service .main-content--admin {
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  flex: none !important;
  padding: 0 !important;
}
body.app.ez-shell.ez-page-service .ez-footer {
  position: relative;
  flex-shrink: 0;
  background: #f7f7f8;
}

/* /service features — 3-col cards (modusign-like) */
.ez-features {
  background: #111111;
  color: #fff;
  padding: 64px 28px 88px;
  box-sizing: border-box;
}
.ez-feature-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ez-feature-card {
  margin: 0;
  padding: 28px 24px 30px;
  background: #1a1612;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  box-sizing: border-box;
  min-height: 100%;
}
.ez-feature-card h2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
}
.ez-feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: 1px;
  border-radius: 10px;
  background: #3a2e1a;
  flex-shrink: 0;
  position: relative;
}
.ez-feature-mark::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #f5c518;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.15);
}
.ez-feature-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ez-feature-card li {
  position: relative;
  padding: 4px 0 4px 14px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
}
.ez-feature-card li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.4);
}
@media (max-width: 960px) {
  .ez-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ez-feature-grid { grid-template-columns: 1fr; }
  .ez-features { padding: 40px 16px 56px; }
}

/* /register — light page */
html:has(body.ez-page-register) {
  height: auto;
  overflow-y: auto;
}
body.app.ez-shell.ez-page-register {
  height: auto !important;
  min-height: 100vh;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  background: #f5f6f8;
}
body.app.ez-shell.ez-page-register .app-workspace.ez-workspace {
  overflow: visible !important;
  flex: 1 0 auto;
  min-height: 0;
  height: auto;
  background: #f5f6f8;
}
body.app.ez-shell.ez-page-register .main-content.ez-main,
body.app.ez-shell.ez-page-register .main-content--admin {
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  flex: none !important;
  padding: 0 !important;
  background: #f5f6f8;
}
body.app.ez-shell.ez-page-register .ez-footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.ez-register {
  background: #f5f6f8;
  color: #111;
  padding: 40px 24px 72px;
  box-sizing: border-box;
}
.ez-register-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.ez-reg-block,
.ez-reg-contact {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 14px;
  padding: 28px 28px 30px;
  box-sizing: border-box;
}
.ez-reg-block h1,
.ez-reg-block h2,
.ez-reg-contact h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 800;
  color: #111;
}
.ez-reg-mark {
  width: 14px;
  height: 14px;
  background: #1a73e8;
  flex-shrink: 0;
}
.ez-reg-steps,
.ez-reg-req {
  margin: 0;
  padding-left: 1.25rem;
  color: #333;
  font-size: 15px;
  line-height: 1.7;
}
.ez-reg-steps li,
.ez-reg-req li { margin: 0 0 6px; }
.ez-reg-price {
  margin-top: 22px;
  padding: 16px 18px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #eef2f7;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.ez-reg-price p { margin: 0 0 10px; }
.ez-reg-price p:last-child { margin-bottom: 0; }
.ez-reg-note { color: #666; }
.ez-reg-free { margin: 0; color: #1565c0; font-weight: 600; }
.ez-reg-lead {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.ez-reg-form { margin-top: 22px; }
.ez-reg-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.ez-reg-row label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.ez-reg-row input[type="text"],
.ez-reg-row input[type="email"],
.ez-reg-row input[type="tel"] {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  background: #fff;
  color: #111;
}
.ez-reg-domain {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ez-reg-domain input { flex: 1; }
.ez-reg-suffix {
  flex-shrink: 0;
  font-size: 13px;
  color: #666;
  white-space: nowrap;
}
.ez-reg-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ez-reg-file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.ez-reg-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.ez-reg-hint {
  margin: -4px 0 16px 172px;
  font-size: 12px;
  color: #888;
  line-height: 1.45;
}
.ez-reg-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}
.ez-reg-actions .ez-btn {
  min-width: 140px;
  height: 44px;
}
.ez-reg-result {
  margin-top: 14px;
  font-size: 14px;
  color: #0b6bcb;
  min-height: 1.2em;
}
.ez-reg-contact a {
  color: #1a73e8;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}
.ez-reg-contact a:hover { text-decoration: underline; }
.ez-reg-contact p { margin: 0; }

@media (max-width: 640px) {
  .ez-reg-row { grid-template-columns: 1fr; gap: 6px; }
  .ez-reg-hint { margin-left: 0; }
  .ez-register { padding: 28px 14px 56px; }
  .ez-reg-block, .ez-reg-contact { padding: 20px 16px; }
}

/* register filename overrides */

.ez-reg-price-title { margin: 0 0 8px; color: #111; }
.ez-reg-price-month { margin: 0 0 6px; color: #c62828; font-weight: 600; }
.ez-reg-file {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.ez-reg-file input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.ez-reg-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.ez-reg-file-name {
  font-size: 13px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* register file button (hide native control) */
.ez-reg-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.ez-reg-file {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-width: 0;
  position: relative;
}
.ez-reg-file-input,
.ez-reg-file input[type="file"] {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 0.1px !important;
  height: 0.1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  z-index: -1;
}
.ez-reg-file-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  background: #111 !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}
.ez-reg-file-name {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* register form fixes 20260904reg5 */
body.ez-page-register {
  color-scheme: light;
}
body.ez-page-register,
body.ez-page-register .ez-register,
body.ez-page-register .ez-reg-block,
body.ez-page-register .ez-reg-contact {
  background: #f5f6f8;
  color: #111;
}
body.ez-page-register .ez-reg-block,
body.ez-page-register .ez-reg-contact {
  background: #fff;
}

/* label 160 + control column ends where submit sits */
body.ez-page-register .ez-reg-form-block .ez-reg-row {
  grid-template-columns: 160px minmax(0, 220px);
  justify-content: start;
}
body.ez-page-register .ez-reg-hint {
  margin: -4px 0 16px 172px;
  max-width: 220px;
}
body.ez-page-register .ez-reg-row input[type=text],
body.ez-page-register .ez-reg-row input[type=email],
body.ez-page-register .ez-reg-row input[type=tel],
body.ez-page-register .ez-reg-domain input {
  width: 100% !important;
  max-width: 220px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  caret-color: #111111 !important;
  border: 1px solid #d0d5dd !important;
  border-radius: 8px !important;
  opacity: 1 !important;
  box-shadow: none !important;
}
body.ez-page-register .ez-reg-row input::placeholder,
body.ez-page-register .ez-reg-domain input::placeholder {
  color: #667085 !important;
  -webkit-text-fill-color: #667085 !important;
  opacity: 1 !important;
}
body.ez-page-register .ez-reg-row input:-webkit-autofill,
body.ez-page-register .ez-reg-row input:-webkit-autofill:hover,
body.ez-page-register .ez-reg-row input:-webkit-autofill:focus {
  -webkit-text-fill-color: #111111 !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 99999s ease-out;
}
body.ez-page-register .ez-reg-domain {
  max-width: 220px;
  width: 100%;
}
body.ez-page-register .ez-reg-domain input {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none !important;
}
body.ez-page-register .ez-reg-file {
  max-width: 220px;
  width: 100%;
}
body.ez-page-register .ez-reg-file-input,
body.ez-page-register .ez-reg-file input[type=file] {
  position: fixed !important;
  left: -9999px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -1 !important;
}
body.ez-page-register .ez-reg-file-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  border: none !important;
  appearance: none;
  -webkit-appearance: none;
  background: #111 !important;
  color: #fff !important;
  z-index: 1;
}
body.ez-page-register .ez-reg-actions {
  display: grid;
  grid-template-columns: 160px minmax(0, 220px);
  gap: 12px;
  justify-content: start;
  margin-top: 8px;
}
body.ez-page-register .ez-reg-actions .ez-btn {
  grid-column: 2;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  max-width: 220px;
  box-sizing: border-box;
}


/* customer + qa public pages */
body.ez-page-customer,
body.ez-page-qa {
  color-scheme: light;
  background: #f5f6f8;
  color: #111;
}
body.ez-page-customer .ez-main,
body.ez-page-qa .ez-main,
body.ez-page-customer .main-content--admin,
body.ez-page-qa .main-content--admin {
  overflow: auto !important;
  height: auto !important;
  background: #f5f6f8;
}
.ez-customer,
.ez-qa { padding: 28px 18px 64px; }
.ez-customer { padding: 28px 28px 48px; min-height: calc(100vh - var(--ez-header-h)); box-sizing: border-box; display: flex; flex-direction: column; }
.ez-customer-wrap { max-width: 1120px; width: 100%; margin: 0 auto; flex: 1 1 auto; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; align-items: stretch; }
.ez-qa-wrap { max-width: 920px; margin: 0 auto; }
.ez-customer-empty { margin: 12px 0 0; color: #666; font-size: 15px; }
.ez-qa-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 16px;
}
.ez-qa-head h1 { margin: 0; }
.ez-qa-add { min-width: 96px; height: 40px; }
.ez-qa-table { width: 100%; background: #fff; }
.ez-qa-table th.col-num,
.ez-qa-table td.cell-num {
  text-align: right; text-overflow: clip; overflow: visible; white-space: nowrap;
}
.ez-qa-overlay {
  position: fixed; inset: 0; z-index: 1200;
  background: rgba(15, 23, 42, 0.45);
  display: flex; align-items: center; justify-content: center; padding: 24px 14px;
}
.ez-qa-dialog {
  width: min(860px, 100%); max-height: min(86vh, 900px);
  background: #fff; border-radius: 12px; box-shadow: 0 18px 48px rgba(0,0,0,0.22);
  display: flex; flex-direction: column; overflow: hidden;
}
.ez-qa-dialog-edit { width: min(920px, 100%); }
.ez-qa-dialog-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 16px; border-bottom: 1px solid #e5e7eb; background: #fafafa;
}
.ez-qa-dialog-title {
  margin: 0; font-size: 17px; font-weight: 700; color: #111; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ez-qa-dialog-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ez-qa-close {
  width: 36px; height: 36px; border: none; border-radius: 8px;
  background: transparent; cursor: pointer; color: #333;
}
.ez-qa-close:hover { background: #eee; }
.ez-qa-dialog-body { padding: 18px 18px 24px; overflow: auto; flex: 1; min-height: 0; }
.ez-qa-html { color: #111; line-height: 1.6; font-size: 15px; }
.ez-qa-html img { max-width: 100%; height: auto; }
.ez-qa-label { display: block; margin: 0 0 6px; font-size: 13px; font-weight: 700; color: #333; }
.ez-qa-edit-form input[type="text"],
.ez-qa-edit-form textarea {
  width: 100%; box-sizing: border-box; border: 1px solid #d0d5dd; border-radius: 8px;
  padding: 10px 12px; font-size: 14px; background: #fff !important; color: #111 !important; margin-bottom: 14px;
}
.ez-qa-edit-form textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.45; resize: vertical; min-height: 280px;
}


/* qa grid contrast */
body.ez-page-qa .ez-qa-table,
body.ez-page-qa .ez-qa-table td,
body.ez-page-qa .ez-qa-table th {
  color: #111 !important;
  background-color: #fff;
}
body.ez-page-qa .ez-qa-table thead th {
  background: #0f172a !important;
  color: #fff !important;
}
body.ez-page-qa .ez-qa-table tbody tr:hover td {
  background: #f8fafc !important;
  color: #111 !important;
}


/* legal pages */
html:has(body.ez-page-legal),
html:has(body.ez-page-customer),
html:has(body.ez-page-qa) {
  height: auto;
  overflow-y: auto;
}
body.app.ez-shell.ez-page-legal,
body.app.ez-shell.ez-page-customer,
body.app.ez-shell.ez-page-qa {
  color-scheme: light;
  background: #f5f6f8;
  color: #111;
  height: auto !important;
  min-height: 100vh;
  overflow-x: hidden !important;
  overflow-y: auto !important;
}
body.app.ez-shell.ez-page-legal .app-workspace.ez-workspace,
body.app.ez-shell.ez-page-customer .app-workspace.ez-workspace,
body.app.ez-shell.ez-page-qa .app-workspace.ez-workspace {
  overflow: visible !important;
  flex: none !important;
  min-height: 0;
  height: auto;
}
body.app.ez-shell.ez-page-legal .main-content.ez-main,
body.app.ez-shell.ez-page-legal .main-content--admin,
body.app.ez-shell.ez-page-customer .main-content.ez-main,
body.app.ez-shell.ez-page-customer .main-content--admin,
body.app.ez-shell.ez-page-qa .main-content.ez-main,
body.app.ez-shell.ez-page-qa .main-content--admin {
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
  flex: none !important;
  padding: 0 !important;
  background: #f5f6f8;
}
body.app.ez-shell.ez-page-legal .ez-footer,
body.app.ez-shell.ez-page-customer .ez-footer,
body.app.ez-shell.ez-page-qa .ez-footer {
  position: relative;
  flex-shrink: 0;
}
.ez-legal {
  padding: 36px 18px 72px;
  font-family: "Noto Sans KR", system-ui, sans-serif;
}
.ez-legal-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.ez-legal-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 28px 36px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.ez-legal-head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ececef;
}
.ez-legal-head h1 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}
.ez-legal-meta {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}
.ez-legal-body {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.ez-legal-body h2 {
  margin: 28px 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: #111;
}
.ez-legal-body h3 {
  margin: 18px 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}
.ez-legal-body p,
.ez-legal-body li {
  margin: 0 0 8px;
}
.ez-legal-body ul,
.ez-legal-body ol {
  margin: 0 0 12px;
  padding-left: 1.25em;
}
.ez-legal-biz {
  list-style: none;
  padding-left: 0;
  margin: 8px 0 0;
}
.ez-legal-biz li {
  margin: 0 0 4px;
}
.ez-legal-table-wrap {
  overflow-x: auto;
  margin: 10px 0 14px;
}
.ez-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.ez-legal-table th,
.ez-legal-table td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
.ez-legal-table th {
  background: #f8fafc;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .ez-legal { padding: 24px 12px 56px; }
  .ez-legal-card { padding: 20px 16px 28px; }
  .ez-legal-head h1 { font-size: 20px; }
}

/* register consent */
body.ez-page-register .ez-reg-consent {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 8px 0 16px 172px;
  max-width: 460px;
}
body.ez-page-register .ez-reg-consent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
body.ez-page-register .ez-reg-consent-text .ez-reg-legal-view {
  margin: 0 4px;
  padding: 0;
  border: none;
  background: none;
  color: #1a73e8;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
body.ez-page-register .ez-reg-consent-text .ez-reg-legal-view:hover { text-decoration: underline; }
body.ez-page-register .ez-reg-consent-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1.5px solid #98a2b3;
  border-radius: 4px;
  box-shadow: none;
  color-scheme: light;
}
body.ez-page-register .ez-reg-consent-item input[type="checkbox"]:checked {
  background-color: #111111 !important;
  border-color: #111111;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.2' d='M3.5 8.2l2.8 2.8 6.2-6.2'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
body.ez-page-register .ez-reg-consent-item input[type="checkbox"]:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}
body.ez-page-register .ez-reg-actions .ez-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.2);
}
@media (max-width: 640px) {
  body.ez-page-register .ez-reg-consent {
    margin-left: 0;
    max-width: none;
    grid-template-columns: 1fr;
  }
}

/* register legal modal */
body.ez-reg-legal-open { overflow: hidden !important; }
.ez-reg-legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 14px;
}
.ez-reg-legal-dialog {
  width: min(860px, 100%);
  max-height: min(86vh, 900px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ez-reg-legal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  background: #fafafa;
}
.ez-reg-legal-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #111;
}
.ez-reg-legal-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: #333;
}
.ez-reg-legal-close:hover { background: #eee; }
.ez-reg-legal-body {
  padding: 18px;
  overflow: auto;
  flex: 1;
  min-height: 0;
  background: #fff;
  color: #111;
}
.ez-reg-legal-body .ez-legal-card {
  border: none;
  box-shadow: none;
  padding: 0;
}
.ez-reg-legal-loading {
  margin: 24px 0;
  text-align: center;
  color: #667085;
}


/* customer notice list + incident */
.ez-customer-notice,
.ez-customer-incident {
  margin: 0;
  min-width: 0;
  align-self: stretch;
}
.ez-customer-notice {
  min-height: calc(100vh - var(--ez-header-h) - 76px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.ez-customer-incident {
  height: auto;
  align-self: start;
}
.ez-customer-table tbody tr {
  height: 40px;
}
.ez-customer-table td {
  height: 40px;
  max-height: 40px;
  line-height: 1.35;
}
.ez-customer-table {
  width: 100%;
  margin-top: 8px;
  background: #fff;
  table-layout: fixed;
}
.ez-customer-table th,
.ez-customer-table td {
  color: #111 !important;
  background-color: #fff;
  vertical-align: middle;
}
.ez-customer-table thead th {
  background: #0f172a !important;
  color: #fff !important;
}
.ez-customer-table tbody tr:hover td {
  background: #f8fafc !important;
}
.ez-customer-table tr.grid-row { cursor: pointer; }
.ez-customer-table .col-date,
.ez-customer-table .cell-date {
  width: 118px;
  text-align: left;
  white-space: nowrap;
  text-overflow: clip;
  overflow: visible;
}
.ez-customer-table .col-title,
.ez-customer-table .cell-title {
  width: 42%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ez-customer-table .col-content,
.ez-customer-table .cell-content {
  width: 28%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ez-customer-notice-meta {
  padding: 10px 18px 0;
  color: #64748b;
  font-size: 13px;
}
.ez-incident-form { margin-top: 8px; }
.ez-incident-form .ez-reg-row {
  grid-template-columns: 96px minmax(0, 1fr);
  column-gap: 12px;
}
.ez-incident-form .ez-reg-row-top { align-items: start; }
.ez-incident-form .ez-reg-row-top label { padding-top: 10px; }
.ez-incident-form textarea {
  width: 100%;
  min-height: 140px;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
  resize: vertical;
  background: #fff;
  color: #111;
  font-family: inherit;
}
.ez-incident-form .ez-incident-actions {
  display: block !important;
  grid-template-columns: none !important;
  padding-left: 0;
  box-sizing: border-box;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 0;
}
.ez-incident-actions-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  width: 100%;
  padding: 0;
  margin: 0;
}
.ez-incident-file {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-width: 0;
  flex: 0 1 auto;
  margin: 0;
  padding: 0;
}
body.ez-page-customer .ez-incident-file .ez-reg-file-input,
body.ez-page-customer .ez-incident-file input[type="file"] {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 0.1px !important;
  height: 0.1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  z-index: -1;
  pointer-events: none !important;
}
body.ez-page-customer .ez-incident-file .ez-reg-file-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: #111 !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer !important;
  border: none !important;
  flex-shrink: 0;
  pointer-events: auto !important;
  position: relative;
  z-index: 1;
}
.ez-incident-file .ez-reg-file-name {
  font-size: 13px;
  color: #667085;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.ez-incident-actions .ez-btn {
  min-width: 120px;
  height: 42px;
  flex-shrink: 0;
  margin-left: 0;
  pointer-events: auto !important;
  position: relative;
  z-index: 1;
}
.ez-incident-flash { min-height: 0; }

/* customer form light inputs (same as register) */
body.ez-page-customer {
  color-scheme: light;
}
body.ez-page-customer .ez-incident-form input[type=text],
body.ez-page-customer .ez-incident-form input[type=email],
body.ez-page-customer .ez-incident-form input[type=tel],
body.ez-page-customer .ez-incident-form .ez-reg-domain input,
body.ez-page-customer .ez-incident-form textarea {
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  caret-color: #111111 !important;
  border: 1px solid #d0d5dd !important;
  border-radius: 8px !important;
  opacity: 1 !important;
  box-shadow: none !important;
}
body.ez-page-customer .ez-incident-form input::placeholder,
body.ez-page-customer .ez-incident-form textarea::placeholder {
  color: #667085 !important;
  -webkit-text-fill-color: #667085 !important;
  opacity: 1 !important;
}
body.ez-page-customer .ez-incident-form input:-webkit-autofill,
body.ez-page-customer .ez-incident-form input:-webkit-autofill:hover,
body.ez-page-customer .ez-incident-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #111111 !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 99999s ease-out;
}

@media (max-width: 900px) {
  .ez-customer-wrap {
    grid-template-columns: 1fr;
  }
  .ez-customer {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* customer page: tall content pushes footer below fold (like /service) */
body.app.ez-shell.ez-page-customer {
  min-height: 100vh;
  height: auto !important;
}
body.app.ez-shell.ez-page-customer .app-workspace.ez-workspace {
  flex: 1 0 auto;
  height: auto !important;
  min-height: calc(100vh - var(--ez-header-h));
}
body.app.ez-shell.ez-page-customer .main-content.ez-main,
body.app.ez-shell.ez-page-customer .main-content--admin {
  height: auto !important;
  min-height: calc(100vh - var(--ez-header-h)) !important;
  flex: 1 0 auto !important;
}
body.app.ez-shell.ez-page-customer .ez-footer {
  position: relative;
  flex-shrink: 0;
}


/* qa manual box: internal vertical scroll */
.ez-qa {
  padding: 28px 28px 48px;
  min-height: calc(100vh - var(--ez-header-h));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.ez-qa-wrap {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.ez-qa-block {
  flex: 1 1 auto;
  min-height: calc(100vh - var(--ez-header-h) - 76px);
  max-height: calc(100vh - var(--ez-header-h) - 76px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}
.ez-qa-head {
  flex-shrink: 0;
}
.ez-qa-grid-wrap {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body.app.ez-shell.ez-page-qa .app-workspace.ez-workspace {
  flex: 1 0 auto;
  height: auto !important;
  min-height: calc(100vh - var(--ez-header-h));
}
body.app.ez-shell.ez-page-qa .main-content.ez-main,
body.app.ez-shell.ez-page-qa .main-content--admin {
  height: auto !important;
  min-height: calc(100vh - var(--ez-header-h)) !important;
  flex: 1 0 auto !important;
  overflow: visible !important;
}
body.app.ez-shell.ez-page-qa .ez-footer {
  position: relative;
  flex-shrink: 0;
}

.ez-reg-domain-msg {
  margin: -6px 0 12px;
  min-height: 1.2em;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}
.ez-reg-domain-msg.is-ok { color: #067647; }
.ez-reg-domain-msg.is-bad { color: #b42318; }
.ez-reg-domain-msg.is-pending { color: #6b7280; font-weight: 500; }

#inc-domain-check-msg {
  margin: -4px 0 10px;
  padding-left: calc(96px + 12px);
  box-sizing: border-box;
}

.ez-nav a.is-disabled,
.ez-header-actions .is-disabled,
.ez-btn.is-disabled,
.ez-cta.is-disabled {
  pointer-events: none;
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: none;
}
.ez-nav a.is-disabled.active { font-weight: 700; }

/* ez-docs manual */
html:has(body.ez-page-manual),
html:has(body.ez-page-manual) body {
  height: 100%;
  overflow: hidden;
}
body.app.ez-shell.ez-page-manual {
  height: 100vh !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #0f0f0f;
  color: #e8eaed;
  padding-top: var(--ez-header-h, 72px);
  padding-bottom: 0;
  box-sizing: border-box;
}
body.app.ez-shell.ez-page-manual .ez-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}
body.app.ez-shell.ez-page-manual .ez-footer {
  display: none !important;
}
body.app.ez-shell.ez-page-manual .app-workspace.ez-workspace {
  position: relative;
  height: calc(100vh - var(--ez-header-h, 72px)) !important;
  max-height: calc(100vh - var(--ez-header-h, 72px)) !important;
  overflow: hidden !important;
  flex: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  background: #0f0f0f !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.app.ez-shell.ez-page-manual .main-content.ez-main,
body.app.ez-shell.ez-page-manual .main-content--admin {
  height: 100% !important;
  max-height: 100% !important;
  min-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.ez-docs-search {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
}
.ez-docs-search input {
  width: 240px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  background: #242424;
  color: #e8eaed;
}
.ez-docs-search input::placeholder {
  color: #98a2b3;
}
.ez-docs-search input:focus {
  outline: none;
  border-color: #2e90fa;
  background: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(46,144,250,0.18);
}
.ez-docs {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  background: #0f0f0f;
  color: #e8eaed;
  border: 0;
}
.ez-docs-side {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #0f0f0f;
  border: 0;
}
.ez-docs-nav {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 12px 10px 20px 12px;
  background: #0f0f0f;
  border: 0;
}
.ez-docs-tree {
  margin: 0 0 6px;
  border: 0;
  border-radius: 8px;
  background: #161616;
}
.ez-docs-tree[open] { background: #0f0f0f; }
.ez-docs-tree:not([open]) { background: #242424; }
.ez-docs-tree > summary {
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #98a2b3;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  border-radius: 8px;
}
.ez-docs-tree:not([open]) > summary { color: #e5e7eb; background: #242424; }
.ez-docs-tree > summary::-webkit-details-marker { display: none; }
.ez-docs-tree > summary::after { content: "\25B8"; font-size: 11px; color: #667085; }
.ez-docs-tree[open] > summary::after { content: "\25BE"; }
.ez-docs-nav ul { list-style: none; margin: 0; padding: 0 0 6px; }
.ez-docs-nav a {
  display: block;
  padding: 7px 10px;
  border-radius: 6px;
  color: #d0d5dd;
  text-decoration: none;
  font-size: 14px;
  border: 0;
}
.ez-docs-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.ez-docs-nav a.is-active { background: rgba(46,144,250,0.16); color: #7ab7ff; font-weight: 700; }
.ez-docs-inpage { margin: 2px 0 8px 12px; padding: 0; border-left: 1px solid rgba(255,255,255,0.08); }
.ez-docs-inpage a { font-size: 13px; color: #98a2b3; padding: 4px 10px; font-weight: 500; }
.ez-docs-inpage a.is-h3 { padding-left: 18px; font-size: 12px; }
.ez-docs-inpage a:hover { color: #fff; }
.ez-docs-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #0f0f0f;
  border: 0;
}
.ez-docs-article {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  min-height: 0;
  height: 100%;
  overflow: hidden;
}
.ez-docs-titlebar {
  grid-row: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 36px 12px;
  background: #0f0f0f;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: 2;
}
.ez-docs-titlebar-text {
  min-width: 0;
  flex: 1 1 auto;
}
.ez-docs-titlebar .ez-docs-crumb { margin: 0 0 8px; }
.ez-docs-titlebar h1 { margin: 0; font-size: 28px; letter-spacing: -0.02em; color: #fff; }
.ez-docs-article, .ez-docs-main, .ez-docs-side, .ez-docs {
  min-height: 0 !important;
  max-height: 100%;
}
.ez-docs-work {
  grid-row: 2;
  min-height: 0;
  min-width: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.ez-docs-prose {
  padding: 8px 36px 32px;
  overflow: visible !important;
  max-height: none !important;
}
.ez-docs-scroll { display: contents; }
.ez-docs-crumb { font-size: 13px; color: #98a2b3; }
.ez-docs-crumb span { margin: 0 6px; color: #667085; }
.ez-docs-prose h2 { font-size: 22px; margin: 28px 0 12px; color: #fff; }
.ez-docs-prose h3 { font-size: 17px; margin: 22px 0 10px; color: #f2f4f7; }
.ez-docs-prose p, .ez-docs-prose li { line-height: 1.7; color: #d0d5dd; }
.ez-docs-prose a { color: #7ab7ff; }
.ez-docs-prose strong { color: #fff; }
.ez-docs-callout {
  border-left: 4px solid #2e90fa;
  background: rgba(46,144,250,0.12);
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
  margin: 18px 0;
}
.ez-docs-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin: 18px 0 8px; }
.ez-docs-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: #171717;
  text-decoration: none;
  color: inherit;
}
.ez-docs-card:hover { border-color: rgba(122,183,255,0.5); }
.ez-docs-card strong { font-size: 15px; color: #fff; }
.ez-docs-card span { font-size: 13px; color: #98a2b3; }
@media (max-width: 800px) {
  .ez-docs { grid-template-columns: 1fr; }
  .ez-docs-side { height: 40%; }
  .ez-docs-search input { width: 140px; }
}
