/* =========================================================
   LAYOUT / SHELL / PAGE STRUCTURE
========================================================= */

.dashboard-page {
  min-height: 100vh;
  background: #F2F8F8;
}

.dashboard-shell {
  display: flex;
  min-height: 100vh;
}

.dashboard-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 240px;
  padding: 24px 20px;
  overflow-y: auto;
  background: #FFFFFF;
  border-right: 1px solid #D9E6E6;
}

.dashboard-main {
  width: calc(100% - 240px);
  min-height: 100vh;
  margin-left: 240px;
  background: #F2F8F8;
}

.dashboard-container {
  padding: 24px;
}

.dashboard-page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.dashboard-page-title {
  margin: 0;
  color: #434B49;
  font-size: 2rem;
  font-weight: 700;
}

.dashboard-page-subtitle {
  margin: 8px 0 0;
  color: #839898;
  font-size: 14px;
}

.dashboard-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-text-right {
  text-align: right;
}

.dashboard-empty {
  padding: 40px 20px;
  color: #839898;
  font-weight: 700;
  text-align: center;
}
