img {
  max-width: unset !important;
}

.generic_feature_list ul li:first-child {
  font-weight: bold;
  font-size: calc(14px * 1.1) !important;
}
.styledhead {
  padding-bottom: 1.5rem;
}
.input-group .form-control {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.input-group .btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.img-banner {
  width: auto;
  height: auto;
  max-width: 100% !important;
  max-height: unset;
  object-fit: contain;
}

.copyable {
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.copyable:focus {
  box-shadow: 0 0 5px rgba(0, 140, 255, 0.5);
}
.img-size-label {
  position: absolute;
  top: 8px;
  left: 8px;
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
  background-color: rgba(10, 0, 79, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}
.copied-msg {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  height: 22px; /* Reserve space */
}

.copied-msg.show {
  opacity: 1;
  visibility: visible;
}

.copied-message {
  opacity: 0;
  height: 22px; /* Reserve space */
  transition: opacity 0.3s ease;
  pointer-events: none; /* Just in case */
}
.copied-message.show {
  opacity: 1;
}
