/* =====================================================
   AUTH / NAVBAR — FINAL STABLE VERSION
   Works in Chrome + Firefox
   Multi-row navbar safe
   ===================================================== */

/* -----------------------------
   Greeting text spacing
   ----------------------------- */
#userGreeting {
  padding-top: 0.25rem;
  margin-top: 0.25rem;
}

#greetingRow {
  margin-bottom: 0.25rem;
}

/* -----------------------------
   Navbar shell
   DO NOT FIX HEIGHT (multi-row)
   ----------------------------- */
.navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* -----------------------------
   Brand group alignment
   ----------------------------- */
.nav-brand-group {
  display: flex;
  align-items: center;
  line-height: 1;
}

/* -----------------------------
   Logo icon (left)
   ----------------------------- */
.nav-logo {
  height: 32px;
  width: auto;
  display: block;
}

/* -----------------------------
   Wordmark (text logo)
   CRITICAL FIX
   ----------------------------- */
.nav-wordmark {
 height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
  border: solid 0px;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  line-height: 0;        /* 🔑 kills invisible line box */
}

/*
@media (min-width: 992px) {
  .nav-wordmark {
    height: 32px;
  }
}
 */

/* -----------------------------
   Desktop nav icons
   ----------------------------- */
.nav-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* Icon labels under icons */
.nav-label {
  font-size: 0.75rem;
  line-height: 1;
  margin-top: 0.15rem;
}

/* -----------------------------
   Notification badge positioning
   ----------------------------- */
.notif-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  font-size: 0.6rem;
  padding: 0.25em 0.4em;
}

/* -----------------------------
   Logout button sizing
   ----------------------------- */
#logoutBtn,
#logoutBtnMobile {
  white-space: nowrap;
}

/* -----------------------------
   Mobile navbar tweaks
   ----------------------------- */
@media (max-width: 991.98px) {
  .navbar {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }

  .nav-wordmark {
    max-height: 1.6rem;
  }
}

.country-flag-inline {
  font-size: 14px;
  line-height: 1;
  margin-right: 2px;
}



