.bubble-text-variants {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.bubble-text-variant {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.bubble-text-variant:first-of-type {
  padding-top: 0;
}

.bubble-text-variant:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.bubble-text-copy-btn {
  align-self: flex-start;
  order: 2;
  margin-left: auto;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #f8fafc;
  border-radius: 999px;
  font-size: 0.65rem;
  padding: 0.3rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.bubble-text-copy-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

.bubble-text-copy-btn svg {
  width: 14px;
  height: 14px;
}

.bubble-text-variant__body {
  flex: 1;
  order: 1;
}

.bubble-text-variant__label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: rgba(226, 232, 240, 0.8);
}

.bubble-text-output {
  margin: 0;
  min-height: 80px;
  padding: 0;
  color: #f8fafc;
  font-family: "Sora", "Source Code Pro", monospace;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
  transition: opacity 0.2s ease;
}

.bubble-text-output.is-empty {
  opacity: 0.6;
}
