

.sidebar {
  width: 250px;
  background-color: #fff;
  border-right: 1px solid #ddd;
  color: black;
  padding: 20px;
  overflow-y: auto;
  height: 100vh;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.logo span {
  font-weight: bold;
  font-size: 1.2rem;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.menu-item:hover {
  background-color: #f0f0f0;
}



.menu-item i {
  margin-right: 10px;
}


.tag {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-block;
  background: #e5e7eb;
  color: #374151;
}

