body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Space Mono', monospace;
  background: #000;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  max-width: 550px;
}
main {
}

#toggle-btn {
  text-decoration: underline;
  opacity: 0.5;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: inline-block;
}

#adjust-form,
#log {
  display: none;
}

#countdown {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

#days {
  font-size: 4.5rem;
}

#time {
  font-size: 2rem;
}

#cash-total {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  opacity: 30%;
}
form {
  margin: 1rem 0;
}
input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 2px dashed rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  outline: none;
  width: 200px;
  text-align: center;
  font-family: 'Space Mono', monospace;
  transition: border-color 0.3s, background-color 0.3s;
}

input:focus {
  background-color: rgba(255, 255, 255, 0.104);
}

button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  margin-left: 0.5rem;
  cursor: pointer;
  font-family: 'Space Mono', monospace;
  transition: background 0.3s, color 0.3s;
}

button:hover {
  background: #c0f;
  color: white;
}

ul {
  max-height: 200px;
  overflow-y: auto;
  list-style-type: none;
  opacity:40%;
  font-size: 12px;
  padding: 1rem;
}