:root {
  --bg: #f4f5f7;
  --bg-2: #efeff2;
  --card: rgba(255,255,255,0.72);
  --text: #1f1f23;
  --muted: #7d7f87;
  --line: rgba(0,0,0,0.05);
  --accent: #2fd2f6;
  --accent-2: #14bfe9;
  --accent-3: #7be9ff;
  --shadow: 0 12px 40px rgba(0,0,0,0.06);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1280px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background-image: url('https://static.tildacdn.net/tild3533-6336-4863-b834-386632353533/ChatGPT_Image_8__202.png');
  background-color: rgba(0, 0, 0, 0.03);
  background-blend-mode: overlay;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.shell { width: min(var(--max-width), calc(100% - 28px)); margin: 0 auto; }
.page-stack { padding: 18px 0 40px; display: grid; gap: 22px; position: relative; z-index: 2; }
.narrow { max-width: 800px; }
.ambient { position: fixed; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.orb { position: absolute; border-radius: 999px; filter: blur(70px); opacity: 0.18; animation: floatOrb 11s ease-in-out infinite; }
.orb-1 { width: 320px; height: 320px; left: -80px; top: 40px; background: rgba(47, 210, 246, 0.45); }
.orb-2 { width: 260px; height: 260px; right: -40px; top: 120px; background: rgba(20, 191, 233, 0.34); animation-delay: -3s; }
.orb-3 { width: 360px; height: 360px; right: 14%; bottom: -120px; background: rgba(123, 233, 255, 0.22); animation-delay: -6s; }
@keyframes floatOrb { 0%,100% { transform: translateY(0) translateX(0) scale(1); } 50% { transform: translateY(-14px) translateX(8px) scale(1.04);} }
.glass, .section-card, .hero-card, .editor-card, .side-panel, .doc-card, .auth-card {
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header {
  position: sticky;
  top: 8px;
  z-index: 10;
  margin-top: 8px;
  padding: 4px 18px;
  min-height: 44px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  line-height: 1;
}
.brand-banner {
  height: 116px;
  display: block;
  max-width: min(80vw, 840px);
  object-fit: contain;
}
.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.user-badge {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: #eef1f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.user-badge .material-symbols-rounded {
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
}
.ghost-pill,
.btn {
  min-height: 40px;
  padding: 0 18px;
}
.notice-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef1f4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.hero-card {
  border-radius: 38px; padding: 34px; min-height: 360px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 22px; align-items: stretch;
}
.hero-main h1, .section-title { margin: 0 0 12px; letter-spacing: -0.8px; }
.hero-main h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.02; font-weight: 800; }
.hero-main p, .section-subtitle, .side-text { color: var(--muted); line-height: 1.7; }
.section-title { font-size: clamp(28px, 3.2vw, 38px); font-weight: 800; }
.section-subtitle { font-size: 16px; margin: 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px; min-height: 38px; padding: 8px 14px; border-radius: 999px;
  background: #f0f1f4; color: #6f727a; font-size: 14px; width: fit-content; margin-bottom: 18px;
}
.hero-badge-dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--accent-2)); box-shadow: 0 0 12px rgba(47,210,246,0.45); }
.hero-side, .feature-chip-box { background: #ededf0; border-radius: 32px; padding: 24px; }
.mini-label { color: #8b8d95; font-size: 13px; text-transform: uppercase; margin-bottom: 10px; font-weight: 700; letter-spacing: 0.08em; }
.side-big { font-size: 42px; line-height: 1; font-weight: 800; margin-bottom: 10px; }
.pulse { height: 88px; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.46), rgba(255,255,255,0.14)), radial-gradient(circle at 20% 50%, rgba(47,210,246,0.14), transparent 24%), radial-gradient(circle at 70% 50%, rgba(20,191,233,0.10), transparent 24%); position: relative; overflow: hidden; margin: 18px 0; }
.pulse::after { content:""; position:absolute; top:50%; left:-8%; width:116%; height:2px; transform:translateY(-50%); background:linear-gradient(90deg, transparent 0%, rgba(47,210,246,0.18) 10%, rgba(47,210,246,0.85) 22%, rgba(20,191,233,0.95) 30%, rgba(47,210,246,0.2) 42%, transparent 56%); animation:pulseMove 4s linear infinite; }
@keyframes pulseMove { 0% {transform:translateY(-50%) translateX(-6%);} 100% {transform:translateY(-50%) translateX(6%);} }
.btn, .ghost-pill {
  border: 0; cursor: pointer; min-height: 50px; padding: 12px 20px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn { background: linear-gradient(135deg,var(--accent),var(--accent-2)); color: #fff; font-weight: 800; box-shadow: 0 10px 30px rgba(47,210,246,0.24); }
.ghost-pill { background: rgba(255,255,255,0.75); border: 1px solid rgba(0,0,0,0.06); color: var(--text); font-weight: 700; }
.ghost-pill.solid { background: #ececef; }
.ghost-pill.danger { color: #9e2c2c; }
.small { min-height: 38px; padding: 8px 14px; font-size: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.wrap-end { justify-content: flex-end; }
.section-card { border-radius: 36px; padding: 28px; }
.auth-card { padding: 30px; }
.form-stack { display: grid; gap: 16px; }
.form-stack.tight { gap: 12px; }
label { display: grid; gap: 8px; font-weight: 600; }
input, select, textarea {
  border: 1px solid rgba(0,0,0,0.08); background: rgba(255,255,255,0.84); min-height: 52px; border-radius: 18px; padding: 12px 16px; outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(47,210,246,0.12); }
.alert { padding: 14px 16px; border-radius: 18px; font-weight: 600; }
.alert.error { background: rgba(255,96,96,0.12); color: #9e2c2c; }
.verify-box { display: grid; gap: 16px; }
.code-box { font-size: clamp(32px, 6vw, 56px); font-weight: 800; padding: 18px; border-radius: 24px; background: #eefcff; text-align: center; letter-spacing: 8px; }
.dashboard-top { display: flex; justify-content: space-between; gap: 18px; align-items: center; }
.notice-chip, .user-badge { padding: 10px 14px; border-radius: 999px; background: #eef1f4; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.tabs-header { display: flex; gap: 10px; margin-bottom: 18px; }
.tab-btn { min-height: 44px; padding: 10px 16px; border-radius: 999px; border: 0; background: #ececef; font-weight: 700; cursor: pointer; }
.tab-btn.active { background: linear-gradient(135deg,var(--accent),var(--accent-2)); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.doc-card { border-radius: 28px; padding: 20px; }
.doc-card h3 { margin: 8px 0; font-size: 24px; }
.doc-card p, .doc-meta, .tiny-muted, .empty-line { color: var(--muted); }
.empty-state { padding: 18px; border-radius: 20px; background: #ececef; color: var(--muted); }
.editor-layout { gap: 18px; }
.editor-header-card { padding-bottom: 20px; }
.editor-topline { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.doc-title-input { font-size: clamp(26px, 3vw, 38px); font-weight: 800; border: 0; background: transparent; padding: 0; min-height: auto; width: min(100%, 760px); }
.doc-title-input:focus { box-shadow: none; }
.compact { margin-top: 8px; }
.editor-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 18px; }
.editor-card, .side-panel { border-radius: 32px; padding: 20px; }
#editor { min-height: 68vh; background: rgba(255,255,255,0.94); border-radius: 0 0 24px 24px; }
#toolbar { background: #f7f8fa; border-radius: 24px 24px 0 0; border: 1px solid rgba(0,0,0,0.06); border-bottom: 0; }
.ql-toolbar.ql-snow, .ql-container.ql-snow { border-color: rgba(0,0,0,0.08) !important; }
.ql-container.ql-snow { border-radius: 0 0 24px 24px; }
.ql-editor { min-height: 68vh; font-size: 16px; line-height: 1.7; }
.editor-status { margin-top: 12px; color: var(--muted); font-weight: 700; }
.editor-status[data-kind="error"] { color: #9e2c2c; }
.editor-status[data-kind="success"] { color: #1d8d60; }
.share-list { display: grid; gap: 10px; margin-top: 16px; }
.share-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 18px; background: #f0f1f4; }
.copy-row { display: flex; gap: 10px; }
.copy-row input { flex: 1; }
.soft-line { border: 0; border-top: 1px solid rgba(0,0,0,0.06); margin: 18px 0; }
.small-title { font-size: 24px; }
.public-doc-content { background: rgba(255,255,255,0.9); border-radius: 24px; min-height: 300px; }
.table-wrap { overflow: auto; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid rgba(0,0,0,0.06); vertical-align: top; }
.inline-form { display: inline-flex; align-items: center; gap: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips span { padding: 10px 12px; border-radius: 999px; background: rgba(255,255,255,0.62); font-weight: 700; }
.footer { text-align: center; color: #92949d; font-size: 13px; padding-bottom: 30px; position: relative; z-index: 2; }
@media print {
  .site-header, .side-panel, .editor-status, #toolbar, .hero-actions, .footer { display: none !important; }
  body { background: #fff; }
  .editor-grid { grid-template-columns: 1fr; }
  .section-card, .editor-card { box-shadow: none; border: 0; background: #fff; }
}
@media (max-width: 1100px) {
  .hero-card, .editor-grid { grid-template-columns: 1fr; }
  .editor-topline, .dashboard-top, .site-header { flex-direction: column; align-items: stretch; }
  .top-nav { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .shell { width: min(100%, calc(100% - 16px)); }
  .section-card, .hero-card, .editor-card, .side-panel, .site-header { border-radius: 24px; }
  .hero-main h1 { font-size: 38px; }
}



html, body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
main::-webkit-scrollbar,
.page-shell::-webkit-scrollbar,
.app-shell::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}




.editor-area,
.document-scroll,
.doc-view-content,
.ProseMirror,
.viewer-page,
.document-page {
  scrollbar-width: thin;
  -ms-overflow-style: auto;
}

.editor-area::-webkit-scrollbar,
.document-scroll::-webkit-scrollbar,
.doc-view-content::-webkit-scrollbar,
.ProseMirror::-webkit-scrollbar,
.viewer-page::-webkit-scrollbar,
.document-page::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  display: block;
}




/* SHOKDOCS_NOTIFICATIONS_PATCH */
.notif-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.notif-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.notif-headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}
.notif-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.notif-list {
  display: grid;
  gap: 16px;
}
.notif-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(0,0,0,0.05);
}
.notif-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, #e8fbff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 18px rgba(47,210,246,0.10);
}
.notif-icon-wrap .material-symbols-rounded {
  font-size: 34px;
  color: #14bfe9;
}
.notif-main h3 {
  margin: 0;
  font-size: 24px;
}
.notif-main p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.notif-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}
.notif-time {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.notif-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.mini-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef1f4;
  font-size: 13px;
  font-weight: 700;
  color: #52555d;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.user-badge {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #eef1f4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.user-badge .material-symbols-rounded {
  font-size: 22px;
  line-height: 1;
}
.ghost-pill,
.btn {
  min-height: 50px;
  padding: 0 22px;
}
.doc-title-input[readonly] {
  cursor: default;
}
#toolbar {
  overflow-x: auto;
  white-space: nowrap;
}
#toolbar::-webkit-scrollbar {
  height: 8px;
}
#toolbar .ql-formats {
  margin-right: 8px !important;
}
@media (max-width: 1100px) {
  .notif-card {
    grid-template-columns: 1fr;
  }
}



/* SHOKDOCS_QR_PUBLIC_LINK_PATCH */
.public-share-box {
  margin-top: 14px;
}
.public-share-box > label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.qr-share-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}
.qr-share-image {
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: 20px;
  background: #fff;
  padding: 10px;
}
.qr-copy-btn {
  width: 100%;
  margin-top: 14px;
}



/* SHOKDOCS_EDITOR_OVERFLOW_FIX */
.editor-card {
  overflow: hidden;
  min-width: 0;
}

#editor {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: anywhere;
}

.ql-container {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}

.ql-editor {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  word-break: break-word;
}

.editor-grid {
  align-items: start;
}

.section-card,
.editor-card,
.ql-toolbar,
.ql-container,
.ql-editor {
  box-sizing: border-box;
}

\n\n
/* SHOKDOCS_PUBLIC_VIEW_FIX */
.public-doc-page {
  padding-bottom: 28px;
}

.public-doc-card {
  overflow: hidden;
  min-width: 0;
}

.public-doc-title {
  margin: 18px 0 14px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -1px;
  word-break: break-word;
}

.public-doc-owner {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.public-doc-content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
}

.public-doc-editor {
  min-height: 260px;
  max-width: 100%;
  padding: 22px 24px 26px;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.public-doc-editor p:first-child,
.public-doc-editor h1:first-child,
.public-doc-editor h2:first-child,
.public-doc-editor h3:first-child {
  margin-top: 0;
}

.public-doc-editor p:last-child,
.public-doc-editor h1:last-child,
.public-doc-editor h2:last-child,
.public-doc-editor h3:last-child,
.public-doc-editor ul:last-child,
.public-doc-editor ol:last-child,
.public-doc-editor blockquote:last-child {
  margin-bottom: 0;
}

.public-doc-editor img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.public-doc-editor pre,
.public-doc-editor code {
  white-space: pre-wrap;
  word-break: break-word;
}

.footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .public-doc-editor {
    padding: 18px 18px 22px;
    min-height: 200px;
  }
}
\n


/* SHOKDOCS_LANDING_AND_NOTIF_TWEAK */
.single-hero-card {
  grid-template-columns: 1fr !important;
  min-height: 320px;
}

.single-hero-card .hero-main {
  max-width: 820px;
}

#notifBadge.hidden {
  display: none !important;
}

.live-toast-stack {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 3100;
  width: min(360px, calc(100vw - 24px));
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.live-toast {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 18px 48px rgba(0,0,0,0.12);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
  pointer-events: auto;
}

.live-toast.shown {
  transform: translateY(0);
  opacity: 1;
}

.live-toast-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, #e8fbff);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 8px 18px rgba(47,210,246,0.10);
}

.live-toast-icon .material-symbols-rounded {
  font-size: 28px;
  color: #14bfe9;
}

.live-toast-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.live-toast-text {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.live-toast-close {
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.live-toast-close:hover {
  background: rgba(0,0,0,0.05);
}

@media (max-width: 700px) {
  .live-toast-stack {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

/* SHOKDOCS_EDITOR_COLLAB_UPGRADE */
.site-header {
  top: 6px;
  margin-top: 6px;
  padding: 8px 16px;
  min-height: 84px;
  border-radius: 22px;
}
.brand-banner {
  height: 88px;
}
.top-nav {
  gap: 8px;
}
.editor-page-shell {
  padding-top: 14px;
}
.compact-header-card {
  padding: 18px 22px;
}
.toolbar-header-card {
  position: sticky;
  top: 102px;
  z-index: 9;
  padding: 12px 14px 14px;
}
.toolbar-header {
  background: #f7f8fa;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow-x: auto;
  white-space: nowrap;
}
#toolbar.ql-toolbar.ql-snow {
  border: 0 !important;
  background: transparent;
  padding: 10px 12px;
}
#editor {
  min-height: 72vh;
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
}
.editor-main-card {
  padding: 0;
  overflow: hidden;
}
.editor-main-card .editor-status {
  padding: 0 20px 18px;
}
.ql-container.ql-snow {
  border: 0 !important;
  border-radius: 0;
}
.ql-editor {
  min-height: 72vh;
  padding: 28px 34px;
}
.live-collab-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  flex-wrap: wrap;
}
.presence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.presence-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(0,0,0,0.05);
  font-weight: 700;
  font-size: 13px;
}
.presence-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--presence-color, var(--accent));
  box-shadow: 0 0 0 3px rgba(24,198,255,0.16);
}
.ql-font-montserrat {
  font-family: 'Montserrat', Inter, Arial, sans-serif;
}
.ql-font-calibri {
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}
.ql-font-times-new-roman {
  font-family: 'Times New Roman', Times, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="montserrat"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="montserrat"]::before {
  content: 'Montserrat';
  font-family: 'Montserrat', Inter, Arial, sans-serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="calibri"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="calibri"]::before {
  content: 'Calibri';
  font-family: Calibri, 'Segoe UI', Arial, sans-serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="times-new-roman"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="times-new-roman"]::before {
  content: 'Times New Roman';
  font-family: 'Times New Roman', Times, serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value="sans-serif"]::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value="sans-serif"]::before {
  content: 'Sans Serif';
}
@media print {
  .site-header, .toolbar-header-card, .side-panel, .editor-status, .hero-actions, .footer, .ambient { display: none !important; }
  main, .editor-grid, .editor-main-card, .editor-card, .section-card { display: block !important; }
  body {
    background: #fff !important;
    background-image: none !important;
  }
  .editor-page-shell {
    padding: 0 !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .compact-header-card {
    box-shadow: none !important;
    border: 0 !important;
    background: #fff !important;
    padding: 0 0 14mm !important;
    margin: 0 !important;
  }
  .doc-title-input {
    font-size: 24pt !important;
  }
  #editor, .ql-container, .ql-editor {
    min-height: auto !important;
    height: auto !important;
    overflow: visible !important;
    background: #fff !important;
  }
  .ql-editor {
    padding: 0 !important;
  }
}
@media (max-width: 1100px) {
  .toolbar-header-card {
    top: 88px;
  }
}
@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    padding: 12px 14px;
  }
  .brand-banner {
    height: 62px;
  }
  .toolbar-header-card {
    position: static;
  }
  .ql-editor {
    padding: 20px 18px;
  }
}


/* SHOKDOCS_TOOLBAR_DROPDOWN_FIX */
.toolbar-header-card,
.toolbar-header,
#toolbar.ql-toolbar.ql-snow,
#toolbar .ql-formats,
#toolbar .ql-picker {
  overflow: visible !important;
}

#toolbar {
  overflow-x: visible !important;
  overflow-y: visible !important;
}

#toolbar .ql-picker {
  position: relative !important;
}

#toolbar .ql-picker-options {
  z-index: 99999 !important;
  max-height: min(320px, 60vh) !important;
  overflow-y: auto !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14) !important;
}

