.sidebar-list {
  list-style: none;
  padding-left: 0;
}
.sidebar-list a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  font-size: 16.5px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent; /* default hidden */
}

/* Icons */
.sidebar-list a i {
  width: 22px;
  margin-right: 10px;
  color: #6c757d;
  transition: color 0.2s ease;
}

/* Hover effect with left border */
.sidebar-list a:hover {
  background-color: #f1f3f5;
  color: #0d6efd;
  padding-left: 16px;
  border-left: 3px solid #0d6efd;
}

/* Icon color change on hover */
.sidebar-list a:hover i {
  color: #0d6efd;
}

/* Highlight Registration */
.sidebar-list a.highlight {
  font-weight: 600;
  color: #0d6efd;
}

.sidebar-list a.highlight i {
  color: #0d6efd;
}
