.big-text-output-wrap {
  position: relative;
  margin-top: 1rem;
}

.big-text-output {
  width: 100%;
  min-height: 200px;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.6);
  font-family: "Source Code Pro", "Sora", monospace;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #f8fafc;
  white-space: pre-wrap;
  word-break: break-word;
  transition: opacity 0.2s ease;
}

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

.big-text-output--classic {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: "Sora", "Source Code Pro", monospace;
}

.big-text-output--double {
  letter-spacing: 0.15em;
  font-size: 1.1rem;
  font-family: "Unbounded", "Sora", sans-serif;
}

.big-text-output--block {
  font-family: "Source Code Pro", monospace;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.2rem;
  font-size: 0.9rem;
}

.big-text-copy-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f8fafc;
  border-radius: 999px;
  font-size: 0.65rem;
  padding: 0.25rem 0.65rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  z-index: 2;
}

.big-text-copy-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

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

.big-text-controls {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.big-text-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.85);
}

.big-text-select {
  min-height: auto;
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #f8fafc;
}
