.shared_layout_navbar {
  overflow: hidden;
  margin:0;
  width: 100%;
  /* height: var(--navbar-heights); */
  display: flex;
  padding: 0.9rem 1rem;
  align-items: center; 
  justify-content: space-between;
  border-bottom: #E2E8F0 solid 1px;
  position: fixed;
  background-color: white ;
  position: relative;
}

.nav_bar_logo {
  font-family: 'Fredoka One', sans-serif;
  font-size: 2rem;

  background: linear-gradient(60deg, #3367b3, #5a81d1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav_links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav_links a {
  text-decoration: none;
  color: rgb(75, 62, 62);
  font-weight: 500;
  transition: color 0.3s ease;
}

#sign_up {
  background: #4a3ea3;
  color: white;
  padding: 0.6rem 1.1rem;
  border-radius: 0.3rem;
}

.hamburger_menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.hamburger_menu span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}


@media (max-width: 450px) {
  .shared_layout_navbar {
  /* overflow: hidden; */
  margin:0;
  width: 100%;
  /* height: var(--navbar-heights); */
  display: flex;
  padding: 0.9rem 1rem;
  align-items: center; 
  justify-content: space-between;
  border-bottom: #E2E8F0 solid 1px;
  position: fixed;
  background-color: white ;
  position: relative;
}

  .nav_links {
    display: none;
    flex-direction: column;
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    height: 100vh;
    background: white; */
    /* z-index: 1000; */
    
  }

  /* .nav_links.show {
    display: flex;
    width: 100%;
  } */

  .nav_links.show {
  display: flex;
  width: 100%;
  height: 10rem; /* full viewport height */
  flex-direction: column;
}

  .hamburger_menu {
    display: flex;
    align-items: start;
  }

.hamburger_menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger_menu.open span:nth-child(2) {
  opacity: 0; /* hide middle line */
}

.hamburger_menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
}