/* Hamburger Icon */
#custom-hamburger {
  width: 26px;
  height: 22px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 8px; /* spacing from KB tab */
  z-index: 9999;
}

#custom-hamburger .burger-line {
  width: 100%;
  height: 3px;
  background: #333;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* Animation when active (turns hamburger into X) */
#custom-hamburger.active .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
#custom-hamburger.active .burger-line:nth-child(2) {
  opacity: 0;
}
#custom-hamburger.active .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Sidebar */
#custom-sidebar {
  position: fixed;
  top: 56px;
  left: -260px; /* hidden by default */
  width: 260px;
  height: 100%;
  background: #ffffff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 9998;
  transition: left 0.3s ease;
}

#custom-sidebar.open {
  left: 0; /* slide in */
}

#custom-sidebar .sidebar-title {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

#custom-sidebar .sidebar-item {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.2s ease;
}

#custom-sidebar .sidebar-item:hover {
  color: #2563eb;
}

/* Hide Original Knowledge Base Button*/
#kb_tab{
display: none;
}

/* Hide Original Tickets Button*/
#ticket_tab{
display: none;
}