body {
  background: #c3c3c3;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 10px;
}

.window {
  width: 400px;
  border: 2px solid black;
  background: #fff;
  position: absolute;
  top: 50px;
  left: 50px;
  box-shadow: 2px 2px #000;
}

.title-bar {
  background: navy;
  color: white;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  cursor: move;
}

.menu-bar {
  background: #e0e0e0;
  padding: 4px;
  font-size: 14px;
}

.content {
  padding: 10px;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.icon {
  width: 60px;
  text-align: center;
  cursor: pointer;
}

.icon img {
  width: 32px;
  height: 32px;
}

textarea {
  width: 100%;
  height: 200px;
  font-family: monospace;
}
