/* ======================
   SIDEBAR BASE
====================== */
.sidebar{
  position:fixed;
  top:0;
  left:-260px;
  width:240px;
  height:100vh;
  background:#ffffff;
  box-shadow:2px 0 20px rgba(0,0,0,0.15);
  transition:0.3s;
  z-index:1200;

  display:flex;
  flex-direction:column;
}

.sidebar.active{
  left:0;
}

/* ======================
   HEADER
====================== */
.sidebar-logo{
  padding:15px;
  text-align:center;
  border-bottom:1px solid #eee;
}

.sidebar-logo img{
  width:120px;
  max-width:80%;
}

.sidebar-header{
  padding:15px;
  border-bottom:1px solid #eee;
}

.small-text{
  font-size:12px;
  color:#6b7280;
}

.user-name{
  font-weight:bold;
  margin-top:4px;
}

/* ======================
   MENU
====================== */
.sidebar-item{
  position:relative;
  margin:6px 12px;
  padding:14px 16px 14px 20px;
  border-radius:12px;
  font-size:14px;
  font-weight:500;
  cursor:pointer;
  transition:all 0.2s ease;
  color:#1f2937;
}

.sidebar-item:hover{
  background:#f3f4f6;
}

.sidebar-item.active{
  background:#e0ecff;
  color:#2563eb;
  font-weight:600;
}

.sidebar-item.active::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  bottom:10px;
  width:4px;
  border-radius:4px;
  background:#2563eb;
}

.logout{
  background:#fee2e2;
  color:#b91c1c;
  font-weight:600;
}

.logout:hover{
  background:#b91c1c;
  color:white;
}

/* ======================
   TAGLINE (FIXED VERSION)
   SEKARANG NEMPEL DI DALAM SIDEBAR
====================== */
.sidebar-tagline{
  margin-top:auto;      /* dorong ke bawah */
  padding:20px;
  font-size:11px;
  line-height:1.6;
  color:#9ca3af;
  font-style:italic;
}

.sidebar-tagline span{
  display:block;
  margin-top:6px;
  font-weight:600;
  color:#6b7280;
}