

.nav-akun-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  user-select: none;
  transition: background 0.2s;
}
.nav-akun-btn:hover { background: linear-gradient(135deg, #4f46e5, #3730a3); }

.nav-akun-avatar {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}

.nav-akun-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  min-width: 220px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 9999;
  animation: ddFadeIn 0.15s ease;
}
.nav-akun-dropdown.open { display: block; }
@keyframes ddFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.akun-info {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 6px 10px;
}
.akun-avatar-lg {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: #fff;
  flex-shrink: 0;
}
.akun-name { font-weight: 700; font-size: 13px; color: #f1f5f9; }
.akun-email { font-size: 11px; color: #64748b; margin-top: 2px; }
.akun-divider { border: none; border-top: 1px solid #334155; margin: 4px 0; }

.akun-menu-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px; font-weight: 500;
  color: #cbd5e1;
  width: 100%;
  background: none; border: none; cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.akun-menu-item:hover { background: #334155; color: #f1f5f9; }
.akun-menu-item svg { flex-shrink: 0; }
.akun-logout { color: #f87171; }
.akun-logout:hover { background: #450a0a22; color: #ef4444; }

.nav-chart-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: #ef4444; color: #fff;
  border-radius: 50%; width: 16px; height: 16px;
  font-size: 10px; font-weight: 800;
  margin-left: 4px;
}

@media(max-width:900px){
  
  .nav-akun-btn {
    order: 99;
    flex-shrink: 0;
  }
  
  .nav-right {
    flex-shrink: 0;
  }
}
@media(max-width:600px){
  .nav-akun-btn { padding: 5px 8px !important; font-size: 11px !important; }
  .nav-akun-label { display: none; }
  .nav-akun-dropdown { min-width: 200px !important; right: -4px !important; left: auto !important; }
  .nav-akun-avatar { width: 26px !important; height: 26px !important; font-size: 12px !important; }
}

/* ===== MOBILE AKUN SECTION IN HAMBURGER - ACCORDION ===== */
.nav-akun-mobile-section {
  border-top: 1px solid #1e293b !important;
  padding: 0 !important;
  list-style: none !important;
}

.nav-akun-mobile-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.nav-akun-mobile-header:hover,
.nav-akun-mobile-section.akun-open .nav-akun-mobile-header {
  background: rgba(99,102,241,0.08);
}

.nav-akun-mobile-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; color: #fff;
  flex-shrink: 0; overflow: hidden;
  border: 2px solid rgba(99,102,241,0.5);
}

.nav-akun-mobile-info {
  flex: 1;
  min-width: 0;
}
.nav-akun-mobile-name {
  font-size: 13px; font-weight: 700; color: #f1f5f9;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.nav-akun-mobile-email {
  font-size: 11px; color: #64748b; margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.nav-akun-mobile-chevron {
  flex-shrink: 0;
  color: #64748b;
  transition: transform 0.25s ease;
  display: flex; align-items: center;
}
.nav-akun-mobile-section.akun-open .nav-akun-mobile-chevron {
  transform: rotate(180deg);
  color: #6366f1;
}

/* Submenu accordion - default tersembunyi */
.nav-akun-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.15);
}
.nav-akun-mobile-section.akun-open .nav-akun-mobile-submenu {
  max-height: 300px;
}

.nav-akun-mobile-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 12px 22px 12px 28px;
  font-size: 13px; font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  background: none; border: none; cursor: pointer;
  border-top: 1px solid rgba(30,41,59,0.8);
  transition: background 0.15s, color 0.15s;
  box-sizing: border-box;
}
.nav-akun-mobile-item svg { flex-shrink: 0; opacity: 0.7; }
.nav-akun-mobile-item:hover { background: #0f172a; color: #f1f5f9; }
.nav-akun-mobile-logout { color: #f87171 !important; }
.nav-akun-mobile-logout:hover { background: #1a0606 !important; color: #ef4444 !important; }

/* Desktop: sembunyikan mobile akun section */
@media(min-width: 901px) {
  .nav-akun-mobile-section { display: none !important; }
}

/* Mobile: sembunyikan tombol akun dropdown, tampilkan section di menu */
@media(max-width: 900px) {
  #navAkunBtn { display: none !important; }
  .nav-akun-mobile-section { display: list-item !important; }
}
