/* ==========================
   NAVBAR STYLES (Topbar Gradient)
   ========================== */
.navbar {
  background: linear-gradient(90deg, #4B2E83 0%, #F9A825 100%);
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: #fff !important;
}

/* Force all text/icons to white inside navbar */
.navbar,
.navbar * {
  color: #fff !important;
}

/* Hamburger Menu */
.hamburger {
  font-size: 18px;
  cursor: pointer;
  margin-right: 12px;
  user-select: none;
  display: flex;
  align-items: center;
}

/* Right side (profile text) */
.navbar .ms-auto {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 400;
}

/* Profile Icon */
.navbar .ms-auto i {
  font-size: 22px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .navbar {
    padding: 0 12px;
  }
  .hamburger {
    font-size: 16px;
  }
  .navbar .ms-auto {
    font-size: 14px;
  }
}
