/* Basic layout styles */
.page-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 300px;
  background: #f5f5f5;
  padding: 20px;
}

.content {
  flex: 1;
  padding: 20px;
}

/* Sidebar navigation styles */
.sidebar-nav ul {
  list-style: none;
  padding: 0;
}

.sidebar-nav li {
  margin-bottom: 5px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  text-decoration: none;
  color: #333;
}

.sidebar-nav a:hover {
  background: #e0e0e0;
}

.sidebar-nav .icon {
  margin-right: 8px;
}

/* Nested items */
.sidebar-nav ul ul {
  padding-left: 20px;
}