/* frontend/containers/NoteSection/NoteSection.css */
.note-section {
  margin: 0;
  padding: 0;
}

.note-label {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-icon);
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
}

.note-area {
  outline: none;
  resize: none;
  color: var(--text-body);
  overflow: hidden;
  background: none;
  border: none;
  width: 100%;
  min-height: 24px;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.6;
}

.note-area::placeholder {
  color: var(--text-ghost);
}
