/* Sidebar icon-only collapse improvements */

/* Minimized sidebar: hide text labels and adjust spacing */
html[data-sidebar="icon"] .pe-app-sidebar {
  width: 72px;
  min-width: 72px;
}

html[data-sidebar="icon"] .pe-app-sidebar-logo {
  justify-content: center;
}

html[data-sidebar="icon"] .pe-app-sidebar .pe-menu-title,
html[data-sidebar="icon"] .pe-app-sidebar .pe-nav-content {
  display: none !important;
}

html[data-sidebar="icon"] .pe-app-sidebar .pe-nav-link {
  justify-content: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

html[data-sidebar="icon"] .pe-app-sidebar .pe-nav-icon {
  margin-right: 0 !important;
  font-size: 1.25rem;
}

/* Prevent nested menus from opening in icon mode */
html[data-sidebar="icon"] .pe-app-sidebar .pe-has-sub .collapse,
html[data-sidebar="icon"] .pe-app-sidebar .collapse {
  display: none !important;
}

/* Keep content aligned with minimized sidebar */
html[data-sidebar="icon"] .app-wrapper {
  margin-left: 72px;
}

/* Mobile: sidebar overlays, so don't add left margin */
@media (max-width: 991.98px) {
  html[data-sidebar="icon"] .app-wrapper {
    margin-left: 0;
  }
}
