.work-space {
  z-index: 10;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 5fr;
}

#work-list {
  padding: 20px;
  align-self: flex-start;
  display: grid;
  row-gap: 20px;
  justify-items: start;
}

#work-list div {
  cursor: pointer;
}

.work-detail {
  background-color: rgba(15, 15, 15, 0.8);
}

.work-theme {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.work-theme-btns {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn {
  margin-right: 10px;
  font-size: 14px;
  cursor: pointer;
  background-color: white;
  color: black;
  text-shadow: none;
  padding: 5px 10px;
  border-radius: 20px;
  transition: background-color 0.5s ease;
}

.selected-theme {
  background-color: rgb(232, 255, 22);
  transition: background-color 0.5s ease;
}

.work-space-exit {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.hidden {
  display: none;
}
