.notes-area {
  padding: 0 20px 32px;
}

.notes-input {
  width: 100%;
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 12px;
  font-family: var(--font-mono);
  padding: 12px;
  resize: vertical;
  min-height: 80px;
}

.notes-input:focus {
  border-color: var(--accent);
}

.notes-log {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note-item {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.note-meta {
  font-size: 10px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 4px;
}

.note-text {
  font-size: 12px;
  color: var(--text-secondary);
}
