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

.sidebar {
  width: 220px;
  background: #0c1c2c;
  color: white;
  padding: 2rem 1rem;
}

.sidebar-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.sidebar-logo img {
  max-width: 160px;
  height: auto;
}

.sidebar-logo span {
  font-weight: bold;
  font-size: 1.2rem;
  color: white;
}

.sidebar nav ul {
  list-style: none;
  padding: 0;
}

.sidebar nav li {
  margin-bottom: 1rem;
}

.sidebar nav a {
  color: white;
  text-decoration: none;
}

.sidebar nav a:hover {
  text-decoration: underline;
}

.dashboard-content {
  flex-grow: 1;
  padding: 2rem;
  background: #f5f5f5;
}