/* ========================================
   Quote Section — Light theme
   ======================================== */

.quote-header {
  justify-content: space-between;
  align-items: center;
}

.quote-actions {
  margin-bottom: 0;
}

.quote-textarea {
  width: 100%;
  min-height: 260px;
  padding: var(--space-lg);
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  line-height: 1.7;
  resize: vertical;
  transition: border-color var(--transition-fast);
}

.quote-textarea:focus {
  border-color: var(--accent-primary);
  background: #fff;
}

@media (max-width: 768px) {
  .quote-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .quote-actions {
    width: 100%;
    margin-bottom: 0;
  }
  .quote-actions .btn {
    width: 100%;
    margin-bottom: 0;
  }
  .quote-textarea {
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
    padding: 16px;
    box-sizing: border-box;
    overflow-x: hidden;
    min-height: 180px;
    border-radius: 12px;
    display: block;
  }
}
