#notepad-view {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#notepad-text {
  flex: 1;
  background: #0f0f0f;
  border: none;
  border-bottom: 1px solid #2a2a2a;
  color: #e0e0e0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  padding: 24px;
  resize: none;
  outline: none;
}

#notepad-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #2a2a2a;
}

#notepad-view[hidden] {
  display: none;
}
