aside {
  width: 220px;
  height: calc(100vh - 70px);
  background-color: hsl(210, 13%, 6%);
  padding: 20px;
  top: 70px;
  position: fixed;
  left: 0;
  z-index: 999;
  transition: width 0.3s;
  border-right: rgb(128, 128, 128) 1px solid;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body {
  margin-left: 260px;
  transition: margin-left 0.3s;
  padding-top: 70px;
}

body.sidebar-collapsed {
  margin-left: 60px;
}

.aside-toggled {
  width: 20px;
}

.hidden {
  display: none !important;
  opacity: 0;
}

.grouped-buttons {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.rotated {
  transform: rotate(180deg);
}

#dumb {
  display: flex;
  justify-content: flex-end;
}

#back-button {
  background-color: transparent;
  border: none;
  cursor: ew-resize;
  transition: transform 0.5s;
}

#back-button:active {
  transform: rotate(180deg);
}

#aside-buttons {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.aside-button {
  background-color: transparent;
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  padding: 0px 10px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.aside-button:hover {
  background-color: black;
}

#golden {
  color: rgb(245, 245, 123);
  text-shadow: 0px 0px 4px rgb(245, 245, 123);
}

#credits {
  color: white;
  font-size: 12px;
  opacity: 0.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 30px;
}

#credits * {
  margin: 0;
}

#side-image {
  width: 30px;
  height: 24px;
  object-fit: cover;
}
