.container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert__wrapper {
  margin-bottom: 40px;
}

.snippet__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: white;
}

.html-wrapper {
  background: rgb(38, 38, 38);
  padding: 20px;
  color: white;
  font-family: monospace;
}
.html-wrapper button {
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.85);
  color: #C9CDCF;
  border: 0 none;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-family: "Nunito Sans";
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: -1px;
  border-radius: 4px 0 0 0;
  cursor: pointer;
}
.html-wrapper .component-name {
  color: #A8FF60;
}
.html-wrapper .attribute-name {
  color: rgb(150, 203, 254);
}
.html-wrapper .attribute-value {
  color: rgb(180, 116, 221);
}

.preview__container {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 2px;
  flex-wrap: wrap;
  gap: 4px;
}
.preview__container .no-results {
  width: 100%;
  text-align: center;
}
.preview__container .preview__container-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f1f1f1;
  padding: 2px;
  width: 50px;
  height: 50px;
  position: relative;
}
.preview__container .preview__container-item:active {
  border-color: #378375;
}
.preview__container .preview__container-item:hover {
  cursor: pointer;
}
.preview__container .preview__container-item.copied::after {
  z-index: 50;
  content: "copied!";
  position: absolute;
  top: 0;
  left: 50px;
  background-color: #000;
  color: white;
  padding: 3px;
  border-radius: 4px;
}