
body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: 220px;
  height: 100%;
  background-color: #1e1e2f;
  color: white;
  padding: 20px;
}
.sidebar a {
  color: white;
  display: block;
  padding: 8px 0;
  text-decoration: none;
}
.sidebar a:hover {
  background-color: #333;
}
.main-content {
  margin-left: 340px;         /* pushes content away from sidebar */
  margin-right: 100px;         /* space between content and right edge of screen */
  padding: 100px 60px;            /* top/bottom padding, no extra left/right padding */
  max-width: none;            /* optional: let it stretch as wide as needed */
}

img.profile {
  max-width: 150px;
  border-radius: 10px;
}

/* Modern sidebar layout */
.modern-sidebar {
  width: 280px;
  padding: 30px 25px;
  background-color: #111;
  color: #fff;
  position: fixed;
  height: 100%;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.sidebar-title {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.modern-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  padding: 10px 0;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.modern-sidebar a:hover {
  color: #fff;
  transform: translateX(4px);
}

.modern-sidebar i {
  width: 20px;
  height: 20px;
}

