.main-dashboard-layout {
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 230px;
  position: fixed;
  left: 0;
  top: 90px;
  height: calc(100vh - 90px);
  overflow-y: auto;
  transition: width 0.3s ease;
}


.main-contant-layout {
  margin-left: 230px;
  width: calc(100% - 230px);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-width: 0;
  transition: margin-left 0.3s ease, width 0.3s ease;
}

body.sidebar-collapsed .main-contant-layout {
  margin-left: 0;
  width: 100%;
}

.main-header-layout {
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: 1px solid #e5e7eb;
}

.content-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 16px 20px 20px;
  justify-content: space-between;
  box-sizing: border-box;
  transition: margin-left 0.3s ease, width 0.3s ease;
}

body.sidebar-collapsed .content-layout {
  margin-left: 48px;
  width: calc(100% - 48px);
  padding-left: 8px;
}

.content-layout .footer {
  margin-top: auto;
}
