.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background: transparent !important;
  
  h1{
    margin:0;
    font-size:22px;
  }
}

.main{
  flex-grow: 1;
  overflow: auto;
  padding: 16px;
}

.profile{
  padding: 16px;
  text-align:center;
  padding: 16px 0;
}

.avatar{
  width:110px;
  height:110px;
  border-radius:50%;
  background:#222;
  margin:0 auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:4px solid #111;
}

.avatar img{
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
}

.username{
  font-size:18px;
  font-weight:600;
  margin-bottom:6px;
}

.sub{
  font-size:14px;
  color:var(--muted);
  margin-bottom:16px;
}


.primary-btn{
  background:var(--card);
  border-radius:10px;
  padding:14px;
  font-size:16px;
  color:var(--green);
  font-weight:600;
  cursor:pointer;
  margin-top: 30px;
}

.actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom: 16px;
  background:var(--card);
  border-radius:12px;
}

.action{
  padding:18px;
  text-align:center;
  position:relative;
}

.icon{
  font-size:26px;
  margin-bottom:6px;
}


.menu{
  background:var(--card);
  border-radius:14px;
  overflow:hidden;
}

.item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:16px;
  border-bottom:1px solid #222;
  cursor:pointer;
}

.item:last-child{
  border-bottom:none;
}

.item span{
  flex:1;
}

.arrow{
  color:#666;
}