/* ─── Dashboard Page Layout ─────────────────────── */
.dash-page {
  background: #000;
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 100vh;
}

.dash-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  border-bottom: 1px solid #1a1a1a;
  background: #000;
}

.dash-back, .dash-switch {
  color: #888;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.dash-back:hover, .dash-switch:hover { color: #fff; }

.dash-topbar-logo {
  font-family: 'Speeday', 'Helvetica Neue', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.dash-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}
