.menu__toggle {
  cursor: pointer;
}

.sidebar {
  background: #ffffff;
  z-index: 1;
  width: auto;
  height: 100%;
  overflow: hidden;
  padding: 1rem;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}

.sidebar.collapsed {
  width: 0;
}

.sidebar__inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-gap: 1rem;
  height: calc(100% - 2rem);
}

.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  max-width: 120px;
}

.sidebar__nav {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sidebar__nav--main {
  margin-top: 1rem;
}

.sidebar__nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 400;
}

.sidebar__item {
  padding: 0.7rem 2rem 0.7rem 0.7rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  display: flex;
  grid-gap: 0.4rem;
  justify-content: flex-start;
  align-items: center;
  border-radius: 8px;
}

.sidebar__item.active,
.sidebar__item.active:hover {
  background: #ede9fe;
  color: var(--highlight2-color);
}

.sidebar__item:hover {
  background: #f9f8ff;
}

.sidebar__item .icon {
  color: #374151;
  font-size: 0.9rem;
  text-align: center;
}

.sidebar__item.active .icon {
  color: var(--highlight2-color);
}
