/* ========================
   navbar.css
   Top navbar styling
   ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1030;
}

.navbar-dark .navbar-brand {
    color: #E98A15 !important;
    letter-spacing: 1px;
    font-family: 'Funnel Sans', system-ui, sans-serif;
    font-weight: 600;
    font-style: normal;
    border-bottom: none;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
    color: #ff9e33 !important;
}

@media (min-width: 992px) {
  .navbar {
    position: fixed; /* already true, just making sure */
  }

  .navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;                 /* sit over the border line */
    width: var(--sidebar-width);  /* match expanded sidebar width */
    height: 2px;                  /* enough to cover the 1px border */
    background: var(--datalift-white-colour); /* navbar bg */
    pointer-events: none;
  }

  /* When sidebar is collapsed, cover only the collapsed width */
  body.sidebar-collapsed .navbar::after {
    width: var(--sidebar-collapsed-width);
  }
}
