/* menu.css */

#menuContainer{
  display:flex;
  align-items:center;
  justify-content:center;
}

.menu-wrap{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.menu-username{
  color:white;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
}

.menu-btn{
  width:52px;
  height:52px;
  min-width:52px;
  border:none;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:5px;
  cursor:pointer;
  transition:.2s;
}

.menu-btn:hover{
  background:rgba(255,255,255,.14);
}

.menu-btn span{
  width:22px;
  height:2px;
  background:white;
  display:block;
  border-radius:2px;
}

.dropdown{
  position:absolute;
  top:62px;
  right:0;
  width:220px;
  background:#20252d;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  display:none;
  box-shadow:0 20px 40px rgba(0,0,0,.45);
  z-index:99999;
}

.dropdown a{
  display:block;
  padding:16px 18px;
  color:white;
  text-decoration:none;
  font-weight:500;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:.2s;
}

.dropdown a:last-child{
  border-bottom:none;
}

.dropdown a:hover{
  background:rgba(255,255,255,.06);
}

.dropdown a.active{
  background:#4a90e2;
  color:white;
}

.header-btn{
  padding:10px 14px;
  border:none;
  border-radius:8px;
  background:rgba(255,255,255,.08);
  color:white;
  font-weight:600;
  transition:.2s;
}

.header-btn:hover{
  background:rgba(255,255,255,.14);
}