/*
 * ActionText styles
 */

.trix-content {
  min-height: 200px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  background-color: white;
}

.trix-content:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px #3b82f6;
}

.trix-toolbar {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  background-color: #f8fafc;
}

.trix-button-group {
  margin-right: 0.5rem;
}

.trix-button {
  padding: 0.25rem 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.25rem;
  background-color: white;
  color: #64748b;
}

.trix-button:hover {
  background-color: #f1f5f9;
  color: #1e293b;
}

.trix-button.trix-active {
  background-color: #e2e8f0;
  color: #1e293b;
} 
