.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2563eb;
  color: #fff;
  padding: 0.5em 1em;
  box-shadow: 0 2px 8px rgba(44,62,80,0.06);
  margin-bottom: 2em;
  border-radius: 0 0 12px 12px;
}

.navbar-left, .navbar-right {
  display: flex;
  align-items: center;
  gap: 1.5em;
}

.navbar-logo {
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -1px;
  margin-right: 2em;
}

.navbar-link {
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  padding: 0.4em 1em;
  border-radius: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.navbar-link:hover {
  background: #1e40af;
  color: #fff !important;
}

.navbar-user {
  font-weight: 500;
  margin-right: 1em;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }
  .navbar-left, .navbar-right {
    flex-direction: column;
    gap: 0.5em;
    width: 100%;
  }
  .navbar-logo {
    margin-bottom: 0.5em;
  }
}