.setBox {
  display: flex;
  flex-direction: column;
  justify-content: center;

  margin: auto;
  width: 10cm;
  background-color: black;
  border: 2px solid orangered;
  border-radius: 5px;
}

.verbboxContainer {
  margin-top: 1em;
}

.setContainer {
  display: flex;
  justify-content: center;
  background-color: transparent;
  border: 0;
}

#titleBox {
  width: 100%;
  display: flex;
  padding: 0.5em 0;
  background-color: rgba(255, 68, 0, 0.5);
}

#detailBox {
  margin: 2em 0;
  display: flex;
}

.detailContainer {
  width: 50%;
  text-align: center;
}

h4 {
  width: 50%;
  text-align: center;
}

.setBoxTitle {
  text-align: center;
  width: 5cm;
  position: relative;
  left: calc(50vw - 2.5cm);
  margin-top: 1em;
}

.setBoxContainerColumn {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.setListContainer {
  display: flex;

  overflow: hidden;
  max-width: 100vw;
  /* padding-left: 1em; */
}

.scrollBar {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: auto;
}

.likeButton {
  background-color: black;
  border: 0;
  width: calc(60% + 2cm);
  margin: auto;
  margin-bottom: 1em;
}

.likeButton[state="liked"] {
  background-color: orangered;
  display: block;
}

.likeButton[state="neutral"] {
  background-color: transparent;
  display: block;
}

.likeButton:hover {
  background-color: rgba(255, 68, 0, 0.5);
}
.likeButton[state="liked"]:hover {
  background-color: rgba(255, 68, 0, 0.7);
}
.likeButton[state="neutral"]:hover {
  background-color: rgba(255, 68, 0, 0.5);
}

.likeButton[state="signed-out"] {
  display: none;
}

#setSearch {
  text-align: center;
  width: 90%;
  background-color: transparent;
  border: 0;
}

.searchBarContainer {
  display: flex;
  justify-content: space-between;

  width: 10cm;
  height: 2em;
  margin: auto;
  margin-top: 1em;

  background-color: transparent;
  border: 2px solid orangered;
  border-radius: 5px;
  padding: 0;
}

#searchIcon {
  margin: auto;
  margin-right: 5px;
}
.notSearch[state="hidden"] {
  display: none;
}

.notSearch[state="shown"] {
  display: block;
}
