.navbar {
  position: fixed;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 1000;
  width: 100%;
}

/* Scoped container */
.navbar .container {
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.navbar .rightSection {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar .logo {
  cursor: pointer;
}

.navbar .hamburger {
  display: none;
  cursor: pointer;
}

/* Menu */
.navbar .menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar .menu li a {
  text-decoration: none;
  font-size: 16px;
  color: #334155;
  transition: 0.3s;
  font-weight: 500;
}

.navbar .menu li a:hover {
  color: #10a3c5;
}

.navbar .menu li img {
  display: none;
}

/* Auth */
.navbar .auth {
  display: flex;
  gap: 10px;
  align-items: center;
}

.navbar .login {
  text-decoration: none;
  color: #10a3c5;
  font-size: 15px;
}

.navbar .register {
  text-decoration: none;
  background: #10a3c5;
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
}

.navbar .register:hover {
  background: #0d74d1;
}

.navbar .navContainer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar .authNav span {
  font-size: 16px;
  color: #334155;
  font-weight: 500;
  padding-right: 40px;
  letter-spacing: 0.4px;
}

.navbar .authNav span a {
  color: #0e8fb0;
  text-decoration: none;
  font-weight: 600;
}

.navbar .navAuthNav {
  display: none;
}

/* Mobile */
@media (max-width: 600px) {
  .navbar .hamburger {
    display: block;
  }

  .navbar .navContainer {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    display: none;
  }

  .navbar .navContainer.active {
    display: flex;
  }

  .navbar .menu {
    flex-direction: column;
    width: 100%;
    gap: 28px;
  }

  .navbar .menu li a {
    display: flex;
    gap: 12px;
  }

  .navbar .menu li a img {
    display: block;
  }

  .navbar .menu li a span {
    color: #334155;
  }

  .navbar .auth {
    width: 100%;
  }

  .navbar .register {
    width: 50%;
    text-align: center;
    font-size: 16px;
  }

  .navbar .authNav {
    display: none;
  }

  .navbar .navAuthNav {
    display: block;
  }

  .navbar .navAuthNav span a {
    color: #0e8fb0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
  }
}
