
#navbar {
    position: absolute;
}

nav{
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #1C1C1C;
  height: 50px;
  display: flex;
  align-items: center;
  z-index: 100;
}

li{
  list-style-type: none;

}

.nav{
  text-decoration: none;
  margin-left: 60px;
}

.nav:hover{
  color: white;
}

.active{
  color: white;
}

#navbar ul{
  display: flex;
  margin: 0px;
  flex-grow: 1;
}

#nav_login{
  display: none;
  justify-content: center;
  align-items: center;
  height: 30px;
  border-radius: 8px;
  margin: 0 24px 0 auto;
  padding: 0 10px;
  text-decoration: none;
  background-color: #6cb3ffed;
  color: #212121;
  font-size: 15px;
  font-weight: 800;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#nav_login:hover{
  background-color: #6cc9ff;
  box-shadow: 0 0 30px #6cb3ff1a;
}


#nav_account_wrapper{
  display: none;
  flex-direction: column;
  width: fit-content;
  height: fit-content;
  margin: 0 24px 0 auto;
  position: relative;
  user-select: none;
}

#nav_account{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 30px;
  min-width: 50px;
  max-width: 100px;
  border-radius: 8px;
  padding: 0 12px;
  border: 1px solid #424242;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
#nav_account:hover{
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
}

#nav_account p{
  color: #A3A3A3;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
}

#nav_settings{
  display: none;
}
#nav_settings.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  width: 100%;
  border: 1px solid #424242;
  border-top: none;
  border-radius: 8px;
  top: 100%;
  height: fit-content;
  background-color: #1C1C1C;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.3);
  user-select: none;
  overflow: hidden;
}

#nav_settings p,
#nav_settings a{
  padding: 12px 8px;
  font-weight: 600;
  cursor: default;
  text-decoration: none;
  text-align: center;
}
#nav_settings p:hover,
#nav_settings a:hover{
  background-color: #404040;
}

#phone_nav_background{
  display: block;
}

#hamburger_menu{
  display: none;
  margin-left: 18px;
  padding: 0 12px;
  height: fit-content;
  user-select: none;
}




@media (max-width: 1023px) {


    #phone_nav_background{
        display: none;
    }
    #phone_nav_background.open{
        display: flex;
        position: absolute;
        top: 50px;
        background-color: #212121;
        height: fit-content;
        width: 100vw;
        padding: 30px 0;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    }

    #navbar ul{
        flex-direction: column;
    }

    #navbar ul li{
        margin: 12px 0;
    }

    .nav{
        margin-left: 30px;
    }

    #hamburger_menu{
        display: flex;
        width: 23px;
        height: 100%;
        align-items: center;
        justify-content: center;
    }

    #hamburger_menu svg{
        display: none;
    }
    #hamburger_menu svg.open{
        display: block;
    }

}
