/* Layout styles for dashboard - matches admin console */
.dashboard-header {
  width: 100vw;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-color);
  color: #fff;
  padding: 1.2em 2em 1.2em 2em;
  border-bottom: 1px solid var(--primary-dark);
  position: relative;
  z-index: 10;
}
.dashboard-title {
  display: flex;
  align-items: flex-start;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
}
.dashboard-layout {
  display: flex;
  min-height: calc(100vh - 70px);
}
.sidebar {
  width: var(--sidebar-width);
  background: var(--primary-color);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5em 0 0 0;
  min-height: calc(100vh - 70px);
  position: relative;
}
.sidebar-nav {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.sidebar .nav-link {
  color: #fff;
  padding: 1em 2em;
  border: none;
  background: none;
  text-align: left;
  font-size: 1.1em;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
  display: block;
}
.sidebar .nav-link.active, 
.sidebar .nav-link:hover {
  background: var(--primary-light);
}
.main-content {
  flex: 1;
  background: var(--light-bg);
  padding: 2em;
  min-height: 0;
  overflow-x: auto;
}
