
body {
  margin: 0;
  font-family: sans-serif;
  background-color: #1e1e1e;
  color: #fff;
}
#desktop {
  position: relative;
  height: 100vh;
  background-image: url('assets/wallpaper1.jpg');
  background-size: cover;
}
#taskbar {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  padding: 5px;
  display: flex;
  gap: 5px;
}
.window {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 300px;
  background: #333;
  border: 1px solid #555;
}
.window-header {
  background: #444;
  padding: 5px;
  cursor: move;
  display: flex;
  justify-content: space-between;
}
.window-body {
  padding: 10px;
}
textarea.window-body {
  width: 100%;
  height: 150px;
  background: #222;
  color: #fff;
  border: none;
}

.window {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 300px;
  height: 200px;
  background: #333;
  border: 1px solid #555;
  color: white;
}
.window-header {
  background: #444;
  padding: 5px;
  cursor: move;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.window-body {
  padding: 10px;
  height: calc(100% - 30px);
  overflow: auto;
}
