/* ===================================================================
   nav.css — shared screen-only top banner for EJEC IT handover bundle
   Include in every handover HTML as:
     <link rel="stylesheet" href="_shared/nav.css">
   Pair with:
     <link rel="stylesheet" href="_shared/print.css" media="print">
=================================================================== */

/* Top banner (screen only) */
.doc-banner {
  background: #1d1d1f;
  color: #ffffff;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.doc-banner .doc-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.2px;
}

.doc-banner .doc-meta {
  color: #a1a1a6;
  font-size: 11px;
  white-space: nowrap;
}

.doc-banner .doc-meta span {
  margin-left: 16px;
}

/* Back-to-index link in banner */
.doc-banner .doc-home {
  color: #a1a1a6;
  text-decoration: none;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.doc-banner .doc-home:hover {
  color: #ffffff;
}

/* Print: hide banner entirely */
@media print {
  .doc-banner {
    display: none !important;
  }
}
