/* Base styling for all Lucide icons */
.lucide {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  vertical-align: middle;
}

/* Ensure consistent stroke width regardless of scaling */
.lucide * {
  vector-effect: non-scaling-stroke;
}

/* Sidebar enhancements */
.lucide-enhanced-sidebar {
  padding: 1em;
  background-color: #f9f9f9;
  border-left: 1px solid #ddd;
  margin-top: 1em;
}

.lucide-enhanced-sidebar h3 {
  font-size: 1.1em;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

.lucide-enhanced-sidebar h3 .lucide {
  margin-right: 0.5em;
}

.lucide-enhanced-sidebar ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.lucide-enhanced-sidebar li {
  margin-bottom: 0.5em;
}

.lucide-enhanced-sidebar a {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
}

.lucide-enhanced-sidebar a .lucide {
  margin-right: 0.5em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lucide-enhanced-sidebar {
    padding: 0.5em;
  }

  .lucide-enhanced-sidebar h3 {
    font-size: 1em;
  }

  .lucide-enhanced-sidebar li {
    margin-bottom: 0.3em;
  }
}
