body {
  background-color: teal;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  padding: 20px;
  font-family: "Pixelated MS Sans Serif", Arial;
  -webkit-font-smoothing: none;
  overflow: hidden;
}

.window {
  position: relative;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.progress-section {
  padding: 10px;
}

.progress-section progress {
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
}

.subtasks {
  margin-top: 20px;
  border: 1px solid #dfdfdf;
  padding: 10px;
  background: #f0f0f0;
}

.subtask {
  margin-bottom: 15px;
}

.subtask:last-child {
  margin-bottom: 0;
}

.subtask p {
  margin: 5px 0;
  font-size: 12px;
  color: #222;
}

.subtask progress {
  width: 100%;
  height: 15px;
}

#time-remaining {
  font-size: 12px;
  color: #444;
  text-align: right;
  margin: 5px 0;
}

/* Window stacking and dragging */
.window {
  transition: box-shadow 0.2s;
}

.window:active {
  cursor: move;
}

.title-bar {
  cursor: move;
}

/* Ensure notifications stay on top */
.notification {
  z-index: 9999;
}

/* Add some animation for new windows */
@keyframes windowAppear {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.window {
  animation: windowAppear 0.2s ease-out;
}
