.sidebar-content {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 232px;
  height: 100vh;
  background-color: var(--darkblue);
}

.sidebar-guest {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 232px;
  height: 100vh;
  background-color: var(--darkblue);
}

.logo {
  flex-direction: column;
  gap: 90px;
  padding-top: 64px;
}

.sidebar-menu {
  width: 100%;
  gap: 15px;
  padding: 0;
}

.menu-content {
  display: flex;
  align-items: center;
  color: var(--textwhite);
  gap: 8px;
  width: 100%;
}

.menu-content:hover {
  background-color: var(--bluegrey);
}

.active {
  background-color: #091931 !important;
  color: white;
}

.menu-content img {
  width: 30px;
  height: 30px;
}

.menu-content p {
  width: 72px;
  font-size: 16px;
  font-weight: 400;
}

.info {
  flex-direction: column;
  gap: 15px;
  padding-bottom: 64px;
}

.info a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  font-size: 16px;
  font-weight: 400;
  color: var(--grey);
}

.info p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.info p:hover {
  color: var(--lightblue);
  transform: scale(1.06);
}