.user {
  width: 100%;
  height: 100vh;
  overflow: auto;
  display: flex;
  background: #fff;
}
.sidebar {
  width: 220px;
  background-color: #041230;
  color: white;
  box-sizing: border-box;
}

.sidebar .title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.sidebar .title a {
  display: flex;
  align-items: center;
  font-size: 10px;
  width: 100%;
  height: 100%;
}

.title img {
  width: 50px;
  height: 60px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.sidebar li {
  margin-bottom: 10px;
  text-align: center;
  padding: 10px;
}

.sidebar li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}

.sidebar li:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.sidebar a {
  text-decoration: none;
  color: white;
}
