/* ─── WordPad / Zine — Literature feature ──────────────────── */
.window-zine {
  width: 760px;
  max-width: 95vw;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

/* ── Two-pane layout ───────────────────────────────────────── */
.zine-layout {
  display: flex;
  flex: 1;
  min-height: 0;
  border: 1px inset #808080;
  margin: 0 2px;
}

.zine-sidebar {
  width: 140px;
  min-width: 120px;
  background: #fff;
  border-right: 1px solid #808080;
  overflow-y: auto;
  font-family: Tahoma, sans-serif;
  font-size: 11px;
}

.zine-tree {
  padding: 4px 0;
}

.zine-tree-item {
  padding: 3px 6px 3px 16px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.zine-tree-item::before {
  content: '\25B8';
  position: absolute;
  left: 4px;
  font-size: 9px;
  color: #808080;
}

.zine-tree-item.active {
  background: #000080;
  color: #fff;
}

.zine-tree-item.active::before {
  color: #fff;
}

.zine-tree-item:hover:not(.active) {
  background: #e0e8f0;
}

/* ── Main pane ─────────────────────────────────────────────── */
.zine-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: auto;
  background: #fff;
}

.zine-list {
  flex: 1;
  overflow-y: auto;
  font-family: Tahoma, sans-serif;
  font-size: 11px;
}

.zine-empty {
  text-align: center;
  padding: 30px;
  color: #888;
}

/* ── Post items ────────────────────────────────────────────── */
.zine-post-item {
  padding: 8px 10px;
  border-bottom: 1px solid #e8e4dc;
  cursor: pointer;
}

.zine-post-item:hover {
  background: #f0f0e8;
}

.zine-post-title {
  font-weight: bold;
  margin-bottom: 2px;
}

.zine-post-meta {
  font-size: 10px;
  color: #666;
  margin-bottom: 4px;
}

.zine-post-excerpt {
  color: #444;
  font-size: 11px;
  line-height: 1.4;
}

.zine-post-tips {
  font-size: 9px;
  color: #886600;
  margin-top: 2px;
}

/* ── Expanded post ─────────────────────────────────────────── */
.zine-post-expanded {
  padding: 12px 16px;
  border-bottom: 2px solid #d4d0c8;
  background: #fafaf4;
}

.zine-post-expanded .zine-post-body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 13px;
  line-height: 1.6;
  margin: 10px 0;
  max-width: 600px;
}

.zine-post-expanded .zine-post-body h1,
.zine-post-expanded .zine-post-body h2,
.zine-post-expanded .zine-post-body h3 {
  font-family: Tahoma, sans-serif;
}

.zine-post-expanded .zine-post-body img {
  max-width: 100%;
  height: auto;
}

.zine-post-expanded .zine-post-body pre {
  background: #f0f0e0;
  border: 1px inset #d4d0c8;
  padding: 8px;
  overflow-x: auto;
  font-size: 11px;
}

.zine-post-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  align-items: center;
}

/* ── File menu dropdown ────────────────────────────────────── */
.zine-file-menu {
  position: absolute;
  background: #d4d0c8;
  border: 2px outset #fff;
  padding: 2px 0;
  z-index: 9999;
  font-family: Tahoma, sans-serif;
  font-size: 11px;
  min-width: 140px;
}

.zine-file-menu div {
  padding: 3px 20px;
  cursor: pointer;
}

.zine-file-menu div:hover {
  background: #000080;
  color: #fff;
}

/* ── Editor ────────────────────────────────────────────────── */
.zine-editor {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.zine-editor-header {
  display: flex;
  gap: 6px;
  padding: 6px 8px;
  border-bottom: 1px solid #d4d0c8;
  align-items: center;
}

.zine-editor-header input,
.zine-editor-header select {
  font-family: Tahoma, sans-serif;
  font-size: 11px;
  border: 1px inset #808080;
  padding: 2px 4px;
}

.zine-editor-body {
  display: flex;
  flex: 1;
  min-height: 200px;
}

.zine-editor-body textarea {
  flex: 1;
  resize: none;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  padding: 8px;
  border: 1px inset #808080;
  border-right: none;
}

.zine-preview {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  border: 1px inset #808080;
  background: #fafaf4;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 13px;
  line-height: 1.6;
}

.zine-editor-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-top: 1px solid #d4d0c8;
  font-size: 10px;
  color: #666;
}

.zine-editor-footer span {
  flex: 1;
}

/* ── Status bar ────────────────────────────────────────────── */
.zine-statusbar {
  padding: 3px 8px;
  font-size: 10px;
  color: #666;
  background: #d4d0c8;
  border-top: 1px solid #808080;
  font-family: Tahoma, sans-serif;
}

/* ── Mobile ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .window-zine {
    width: 100%;
    max-width: 100%;
  }

  .zine-layout {
    flex-direction: column;
  }

  .zine-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #808080;
    display: flex;
    overflow-x: auto;
  }

  .zine-tree {
    display: flex;
    padding: 0;
  }

  .zine-tree-item {
    padding: 4px 10px;
    white-space: nowrap;
  }

  .zine-tree-item::before {
    display: none;
  }

  .zine-editor-body {
    flex-direction: column;
  }

  .zine-editor-body textarea {
    border-right: 1px inset #808080;
    border-bottom: none;
    min-height: 150px;
  }

  .zine-preview {
    min-height: 100px;
  }
}
