/* Skill Creator specific styles */

.sc-output-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sc-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}

.sc-dl-btn:hover {
  background: var(--red-hover);
}

.sc-output {
  position: relative;
  background: #1a1a2e;
  border: 1px solid #2a2a4a;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  overflow-x: auto;
}

.sc-pre {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.6;
  color: #e0e0e0;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  max-height: 600px;
  overflow-y: auto;
}

/* Style the copy button for dark background */
.sc-output .ai-copy-btn {
  background: #2a2a4a;
  color: #999;
  border-color: #3a3a5a;
}

.sc-output .ai-copy-btn:hover {
  background: #3a3a5a;
  border-color: var(--red);
  color: var(--red);
}
