﻿/* -- Shared page navigation bar -----------------------------------------------
   Single source of truth for the nav bar style across all pages.
   Edit ONLY this file to update the nav appearance everywhere.
   ----------------------------------------------------------------------------- */
.page-nav { background: #575788; display: flex; align-items: stretch; padding: 0 24px; height: 44px; flex-shrink: 0; }
.page-nav-link { color: #adb5bd; text-decoration: none; font-size: 14px; font-weight: 500; padding: 0 18px; display: flex; align-items: center; border-bottom: 3px solid transparent; transition: color 0.15s, border-color 0.15s; }
.page-nav-link:hover { color: #fff; }
.page-nav-link.active { color: #fff; border-bottom-color: #0d6efd; }
.page-nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; font-size: 13px; color: #adb5bd; }
.btn-nav-logout { padding: 4px 12px; background: #495057; color: #fff; border: none; border-radius: 4px; cursor: pointer; font-size: 12px; }
.btn-nav-logout:hover { background: #6c757d; }
