/* .portal-sidebar{
  width:260px;
  height:100vh;
  position:fixed;
  left:0;
  top:0;
  background:#0f172a;
  color:white;
  padding:25px 20px;
  display:flex;
  flex-direction:column;
}

.sidebar-header{
  margin-bottom:25px;
}

.logo-circle{
  width:40px;
  height:40px;
  background:var(--primary);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}

.sidebar-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.nav-item{
  padding:12px;
  border-radius:8px;
  color:#cbd5f5;
  text-decoration:none;
  display:flex;
  gap:10px;
}

.nav-item:hover{
  background:#1e293b;
}

.nav-item.active{
  background:var(--primary);
  color:white;
}

.sidebar-footer{
  margin-top:auto;
}

.logout-btn{
  width:100%;
  background:var(--danger);
  color:white;
  border:none;
  padding:10px;
  border-radius:6px;
} */