/* ============================================================
   result.css · Estado vacío y panel del prompt generado
   ============================================================ */

#vacio {
  margin-top: 36px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  color: var(--ink-faint);
  font-size: .92rem;
}

#resultado { margin-top: 36px; }

.result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 12px;
}

.result-head h2 { font-size: 1rem; font-weight: 700; }

.result-head .meta {
  font-size: .72rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .06em;
}

#copiar {
  border: 1px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font: inherit;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--speed), color var(--speed);
}

#copiar:hover { background: var(--ink); color: var(--bg); }

#prompt-out {
  background: var(--invert-bg);
  color: var(--invert-ink);
  border: 1px solid var(--code-border);
  border-radius: var(--radius);
  padding: 22px;
  font-family: var(--mono);
  font-size: .82rem;
  line-height: 1.7;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 520px;
  overflow: auto;
}
