/**
 * ALPHA SALES — Layout System (Source of Truth)
 * Centered Desktop Canvas, Generous Whitespace, Floating Top Navigation
 */

.app-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 60px;
}

/* Full Width Desktop Canvas (Edge-to-Edge Fluid Modern OS) */
.main-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Page Header & Greeting */
.page-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

/* 2-Column Responsive Desktop Grid (Main 7 cols / Sidebar Insights 5 cols) */
.dashboard-grid-2col {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  align-items: start;
}

.dashboard-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Responsive tweaks for smaller screens */
@media (max-width: 960px) {
  .dashboard-grid-2col {
    grid-template-columns: 1fr;
  }

  .floating-nav {
    width: 100%;
    justify-content: flex-start;
  }
}
