.admin-sidebar {
  position: fixed;
  width: 21rem;
  height: 100vh;
  background-color: white;
}

.admin-sidebar__header {
  height: 71px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #27272a;
  padding-left: 1rem;
}

.admin-sidebar__title {
  font-size: 1.75rem;
  font-weight: 600;
}

.admin-sidebar__content {
  height: calc(100vh - 71px);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.admin-sidebar__nav-item {
  list-style: none;
}

.admin-sidebar__logout-content {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.admin-sidebar__logout-icon {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 1280px) {
  .admin-sidebar__nav-item {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}