.navbar {
  background-color: #2980b9;
  color: white;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  overflow-x: hidden;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Push content to edges */
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-right: 1.5rem;
  text-decoration: none;
  color: white;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #cbd5e1;
}

.navbar-username, #sign-in-link {
  margin-left: auto;
  font-weight: bold;
  color: #fff;
  padding-right: 2rem;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  /* Optional: align to right edge */
  align-self: flex-end;
}
