/* /styles/journal.css - Standard Text Journal Styling */

.journal {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: fadeIn 0.3s ease-in-out;
}

.journal__toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.journal__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  flex-grow: 1;
  color: #000;
}

.journal__btn {
  border-radius: 8px;
  padding: 0.375rem 1rem;
  white-space: nowrap;
  font-weight: 600;
}

/* The massive writing canvas */
.journal__textarea {
  width: 100% !important;
  min-height: 65vh !important;
  border: 1px solid var(--brand-gold, #b08a48) !important;
  border-radius: 12px !important;
  padding: 1.5rem !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  resize: vertical !important;
  background-color: #fff !important;
  color: #000 !important;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02) !important;
  transition: all 0.2s ease;
}

.journal__textarea:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(176, 138, 72, 0.25) !important;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}