/* ----------------------------------------- */
/* Desktop Sidebar                           */
/* ----------------------------------------- */
.sidebar-desktop {
  width: 250px;
  position: fixed;
  top: 56px;        /* navbar height */
  bottom: 0;
  left: 0;
  background: #1f2937;
  overflow-y: auto;
  transition: width 0.25s ease;
  z-index: 1040;
}

.sidebar-desktop.collapsed {
  width: 0 !important;
  overflow: hidden;
}

/* ----------------------------------------- */
/* Main Content Offset                        */
/* ----------------------------------------- */
main.container-fluid {
  margin-left: 250px;       /* ตรงกับ sidebar width */
  transition: margin-left 0.25s ease;
}

main.container-fluid.expanded {
  margin-left: 0 !important;
}

/* ----------------------------------------- */
/* Mobile - Hide desktop sidebar               */
/* ----------------------------------------- */
@media (max-width: 991px) {
  .sidebar-desktop {
    display: none !important;
  }
}

/* ----------------------------------------- */
/* Sidebar Link Hover                          */
/* ----------------------------------------- */
.sidebar-desktop .list-group-item a,
#sidebarMobile .list-group-item a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 6px;
  transition: 0.2s;
}

.sidebar-desktop .list-group-item a:hover,
#sidebarMobile .list-group-item a:hover {
  background: #374151;
  padding-left: 1rem;
}
