.sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 70px;
  background-color: #f7f6f6;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.sidebar-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 100%;
  /* background-color: aqua; */
  cursor: pointer;
}

.sidebar-link:hover {
  background-color: #e0e0e0;
}

.sidebar-icons {
  height: 25px;
  margin-bottom: 5px;
}

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar p {
  margin: 0;
  font-size: 10px;
}
