@media (min-width: 1200px) {
  .dashboard-main {
    margin-left: 70px;
  }
  .sidebar {
    inset-inline-start: 0;
  }
}

@media (max-width: 1200px) {
  .col-5-custom {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 1024px) {
  /* Sidebar becomes offcanvas */
  .sidebar {
    position: fixed;
    left: -90px;
    top: 0;
    height: 100vh;
    width: 70px;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .sidebar.mobile-active {
    left: 0;
  }

  /* Secondary panel full width */
  .sidebar-secondary-panel {
    left: 0;
    width: 100%;
    z-index: 1100;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.08);
  }

  /* Overlay background */
  .overlay.active::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;
  }
}

@media (max-width: 992px) {
  .col-5-custom {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 768px) {
  .auth-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .auth-left {
    padding: 3rem;
  }
   .auth-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding-left: 50px;
    border-left: 1px solid #e5e7eb99;
  }
}

@media (max-width: 576px) {
  .col-5-custom {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
