    /* ── Zajímavosti (Curiosities) Screen ───────────────── */
    .zajimavosti-screen {
      display: none;
      position: fixed; inset: 0;
      background: #fff;
      z-index: 9200;
      flex-direction: column;
    }
    .zajimavosti-screen.active { display: flex; }
    .zajimavosti-toolbar {
      display: flex; justify-content: space-between; align-items: center;
      padding: 10px 16px; background: #2c3e50; color: #fff; flex-shrink: 0;
    }
    .zajimavosti-toolbar strong { font-size: 1rem; }
    .zajimavosti-toolbar-actions { display: flex; gap: 8px; }
    .zajimavosti-toolbar-actions button {
      padding: 6px 12px; border: none; border-radius: 4px;
      background: rgba(255,255,255,.2); color: #fff; font-weight: 600; cursor: pointer;
      font-size: .85rem;
    }
    .zajimavosti-toolbar-actions button:hover { filter: brightness(1.2); }
    .zajimavosti-body {
      flex: 1; overflow-y: auto; padding: 20px 24px;
      display: flex; flex-direction: column; gap: 28px;
    }
    .zajimavosti-section-title {
      font-size: .78rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: .5px; color: #7f8c8d; margin-bottom: 8px;
    }
    #curiosities-text-editor {
      height: 260px;
    }
    .zajimavosti-hint {
      font-size: .8rem; color: #95a5a6; margin-top: 4px;
    }
    .zajimavosti-persons-table {
      width: 100%; border-collapse: collapse; font-size: .88rem;
    }
    .zajimavosti-persons-table th {
      background: #2c3e50; color: #fff; font-weight: 600;
      padding: 8px 12px; text-align: left; white-space: nowrap;
    }
    .zajimavosti-persons-table td {
      padding: 7px 12px; border-bottom: 1px solid #eee; vertical-align: top;
    }
    .zajimavosti-persons-table tbody tr:hover td {
      background: #eaf2fb; cursor: context-menu;
    }
    .zajimavosti-persons-table .note-cell {
      max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
      font-size: .82rem; color: #555;
    }
    .zajimavosti-empty {
      color: #95a5a6; font-style: italic; font-size: .9rem; padding: 16px 0;
    }

