/* PATH: /public/css/sidebar.css */

.vx-drawer{
  background: var(--vx-surface);
  color: var(--vx-text);
}

.vx-drawer-header{
  border-bottom: 1px solid var(--vx-border-2);
  padding: 16px 16px;
}

.vx-drawer-user{
  display:flex;
  align-items:center;
  gap:12px;
}

.vx-drawer-avatar{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(138,5,190,.18), rgba(34,211,238,.14));
  border: 1px solid var(--vx-border-2);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color: var(--vx-brand);
}

.vx-drawer-name{
  font-weight: 950;
  letter-spacing: -0.4px;
}

.vx-drawer-sub{
  font-size: 12px;
  color: var(--vx-muted);
}

.vx-drawer-body{
  padding: 14px 14px 18px 14px;
}

.vx-drawer-list{
  display:flex;
  flex-direction: column;
  gap:10px;
}

.vx-drawer-item{
  width:100%;
  border: 1px solid var(--vx-border-2);
  background: var(--vx-surface);
  border-radius: 16px;
  padding: 12px 12px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  color: var(--vx-text);
  transition: background .12s ease, transform .12s ease;
}

.vx-drawer-item i{
  font-size: 18px;
  color: var(--vx-brand);
}

.vx-drawer-item:hover{
  background: rgba(138,5,190,.06);
}

.vx-drawer-item:active{
  transform: scale(.99);
}

.vx-drawer-item.vx-primary{
  border-color: rgba(138,5,190,.18);
  background: rgba(138,5,190,.08);
}

.vx-drawer-item.vx-danger i{
  color: var(--vx-danger);
}

.vx-drawer-sep{
  height: 1px;
  background: var(--vx-border-2);
  margin: 8px 0;
}

.vx-drawer-cta{
  margin-top: 14px;
}

.vx-drawer-cta-card{
  border-radius: 18px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--vx-brand), var(--vx-brand-2));
  box-shadow: 0 16px 34px rgba(12,10,20,.16);
}

.vx-drawer-cta-title{
  font-weight: 950;
  letter-spacing: -0.6px;
}

.vx-drawer-cta-sub{
  opacity: .85;
  margin-top: 4px;
  font-size: 13px;
}