.sidebar {
  width: 200px;
  height: 100vh;
  border-right: 1px solid #ccc;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.menu li {
  text-align: center;
  margin: 40px 0;
}

.menu li a {
  text-decoration: none;
  font-weight: bold;
  color: #000;
  font-size: 16px;
  transition: color 0.3s;
}

.menu li a:hover {
  color: #007bff;
}
