.react__template-wrapper {
  display: flex;
  width: 300px;
  height: 200px;
  border-radius: 3px;
  border: 1px solid #ccc;
}
.react__template-wrapper.hide {
  display: none;
}
.react__template-wrapper:hover {
  cursor: pointer;
}

.template__page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.template__page-wrapper .repository__url {
  text-decoration: none;
}

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

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

.selection__buttons-wrapper {
  display: flex;
  gap: 10px;
  padding-top: 10px;
  align-items: center;
}
.selection__buttons-wrapper .vue__label {
  color: #ccc;
}
.selection__buttons-wrapper label:not(.vue__label):hover {
  cursor: pointer;
}
.selection__buttons-wrapper .selection__input {
  display: flex;
  align-items: center;
  gap: 5px;
}
.selection__buttons-wrapper .selection__input input {
  margin: 0;
  height: 20px;
  width: 20px;
}
.selection__buttons-wrapper .selection__input input:hover:not(.vue__input) {
  cursor: pointer;
}

.image__wrapper img {
  position: relative;
  width: 300px;
  height: 100%;
  border-radius: 3px;
  object-fit: contain;
  transition: transform 0.2s;
}
.image__wrapper img:hover {
  transform: scale(2);
  top: 50px;
  z-index: 100;
}