/* Print / share-view stylesheet — DESIGN.md §1a Share view spec */
@media print {
  html, body {
    background: white;
    background-image: none;
    margin: 0;
    padding: 0;
  }

  /* Hide everything except the chart window */
  body > *:not(.chart-window) { display: none !important; }
  .detail-overlay              { display: none !important; }
  .window__close               { display: none !important; }

  .chart-window {
    margin: 0;
    box-shadow: none;
    border: 1px solid #000;
    page-break-inside: avoid;
  }

  /* Monochrome cells */
  .cell {
    background: white;
    box-shadow: none;
    border: 1px solid #000;
  }

  .cell--selected {
    background: white;
    border: 2px solid #000;
  }

  /* Watermark */
  .window__status::after {
    content: 'phoneme.app';
    margin-left: auto;
    font-family: var(--font-chrome);
    font-size: 8px;
    color: var(--color-text-secondary);
    opacity: 1;
  }
}
