.assistant-playground-textarea {
  width: 100%;
}

.assistant-playground-actions {
  margin-top: 1rem;
}

.assistant-playground-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.assistant-playground-panel {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  background: var(--bg-card);
  min-width: 0;
}

.assistant-playground-panel h3 {
  margin-top: 0;
}

@media (max-width: 820px) {
  .assistant-playground-grid {
    grid-template-columns: 1fr;
  }
}
