/* ═══════════════════════════════════════════════════
   Library View
   ═══════════════════════════════════════════════════ */

.library-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.library-header {
  height: calc(var(--header-height) + var(--safe-area-top));
  padding-top: var(--safe-area-top);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.library-header__title {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.library-header__title strong {
  font-weight: 700;
}

.library-footer {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
  padding: var(--space-8) 0;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
