/* Aperçu document en superposition (canonique documents.js, 16/07 —
   demande Maxime : pop imprimable, fermé d'un clic en dehors). */
.doc-apercu {
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(13, 27, 15, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.doc-apercu-boite {
  width: min(1100px, 94vw);
  height: 92vh;
  background: var(--card, #fff);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(13, 27, 15, 0.35);
}
.doc-apercu-barre {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line2, #e3e8e5);
}
.doc-apercu-nom {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 13px;
  color: var(--text, #0D1B0F);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.doc-apercu-btn {
  border: 1px solid var(--line2, #e3e8e5);
  background: var(--card, #fff);
  border-radius: 12px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark, #0D6B35);
  cursor: pointer;
}
.doc-apercu-btn:hover { background: var(--bg, #EFF4EF); }
.doc-apercu-croix {
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--muted, #7A9480);
  cursor: pointer;
  padding: 4px 8px;
}
.doc-apercu-croix:hover { color: var(--text, #0D1B0F); }
.doc-apercu-iframe {
  flex: 1;
  width: 100%;
  border: none;
}
