body {
  background: #383137;
  color: #ffe0c0;
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 4em 2em;
  max-width: 900px;
    margin-left: auto;
  margin-right: auto;
}

#display {
  font-family: "Courier New", monospace;
  font-size: 5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0.3em 0 0.1em 0;
  border-bottom: 1px solid #ba37ee71;
  padding-bottom: 0.3em;
}

button {
    background: rgb(255, 246, 246);
    color: black;
    border: none;
    padding: 0.6em 1.2em;
    margin: 0.3em;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
}

button:disabled {
    background: #555;
    color: #aaa;
    cursor: not-allowed;
}

#status {
  font-size: 1rem;
  margin: 0 0 0.2em 0;
  color: #e2dcd4;
}

#quote {
  font-size: 2rem;
  font-style: italic;
  color: #ffe0c0;
  margin: 0.5em 0 1.5em 0;
  min-height: 1.2em;
}

#controls {
  margin: 1.5em 0 1em 0;
}

#settings {
  margin-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
  max-width: 260px;
}

#settings label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#settings input {
  width: 70px;
}

#tasks {
  margin-top: 2em;
  border-top: 1px solid #444;
  padding-top: 1em;
}

#tasks p {
  margin: 0 0 0.6em 0;
  color: #e8e8e8;
}

#taskInput {
  background: #1a1a1a;
  color: #e8e8e8;
  border: 1px solid #444;
  font-family: "Courier New", monospace;
  padding: 0.4em;
  width: 60%;
}

#taskList {
  list-style: none;
  padding: 0;
  margin: 1em 0 0 0;
}

#taskList li {
  padding: 0.4em 0;
  border-bottom: 1px solid #222;
  color: #e8e8e8;
}

#taskList li::before {
  content: "> ";
  color: #666;
}

#taskList span {
  cursor: pointer;
}

#page {
  display: flex;
  gap: 3em;
  align-items: flex-start;
}

#app {
  flex: 1;
}

#tasks {
  flex: 1;
  margin-top: 0;
  border-top: none;
  border-left: 1px solid #444;
  padding-top: 0;
  padding-left: 2em;
}
