.statusContainer {
  position: fixed;
  bottom: 0;
  z-index: 999;
  width: 100vw;
  box-sizing: border-box;
}
.unregistered {
  background-color: var(--color-grey-300);
}
.moderation {
  background-color: var(--yellow);
}
.unmoderation {
  background-color: var(--color-grey-300);
}
.success {
  background-color: var(--grass);
}

.statusBox {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: calc(0.25vw + 15.2px);
  cursor: pointer;
  box-sizing: border-box;
  gap: 12px;
}
.statusBoxContent {
  display: flex;
  gap: 12px;
}
.boxForBottomTable {
  display: flex;
  align-items: center;
  gap: 2px;
}
.statusBox p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--surface);
}
.statusBox span {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.statusBox img {
  width: 20px;
  aspect-ratio: 1;
}

.success img {
  position: absolute;
  right: calc(0.25vw + 15.2px);
  top: calc(0.25vw + 15.2px);
  width: 12px;
  aspect-ratio: 1;
  transition: transform 4s;
}
.success img:hover {
  transform: rotate(-180deg);
}

@media (max-width: 640px) {
  .statusBox{
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  .statusBoxContent {
    gap: 8px;
  }
}
