/* Custom CSS to fix header and sidebar overlapping issues */

/* Ensure sidebar is properly positioned */
.pc-sidebar {
  z-index: 1025;
}

/* Fix header positioning */
.pc-header {
  z-index: 1030;
}

/* Adjust content area to prevent overlap */
.pc-container {
  min-height: calc(100vh - 70px);
  padding-top: 65px; /* Header height */
  margin-left: 264px; /* Sidebar width */
  transition: all 0.3s ease;
}

/* Responsive adjustments for mobile */
@media (max-width: 991px) {
  .pc-container {
    margin-left: 0;
  }
  
  body[data-pc-sidebar-collapse="true"] .pc-container {
    margin-left: 0;
  }
}

/* When sidebar is collapsed */
body[data-pc-sidebar-collapse="true"] .pc-container {
  margin-left: 70px;
}

/* Remove any conflicting styles */
.pc-sidebar .navbar-wrapper {
  overflow: visible;
}
