/* TextEdit App Styles */

.textedit-app {
  background: #2d2d2d;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.text-toolbar {
  padding: 5px;
  background: #3a3a3a;
  border-bottom: 1px solid #444;
  display: flex;
  gap: 5px;
}

.text-tool {
  padding: 4px 8px;
  background: #444;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
}

#text-area {
  flex: 1;
  background: #1e1e1e;
  color: #eee;
  border: none;
  padding: 15px;
  font-family: var(--system-font);
  font-size: 14px;
  outline: none;
  resize: none;
  line-height: 1.5;
}

