body {
  background-color: black;
  margin: 0;
  color: rgb(255, 255, 255);
  font-family: "Acme";
  font-size: 40px;
}
body.has-demo-banner .container {
  height: calc(100vh - 44px);
}
.demo-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 8px 14px;
  background: linear-gradient(90deg, #1e3a5f, #312e81);
  color: #e2e8f0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}
.demo-banner strong { color: #fff; }
.demo-banner-note { color: #94a3b8; }
.demo-banner-link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 700;
}
.demo-banner-link:hover { text-decoration: underline; }
.container {
  position: relative;
  height: 100vh;
}
.chore-chart {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: flex-start;
}
.kid {
  display: flex;
  flex-direction: column;
  padding: 10px;
  flex-wrap: wrap;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.kid--menu-open {
  z-index: 100;
}
.kid-chores {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  height: 65vh;
  position: relative;
}
.kid-chores--open {
  overflow: visible;
  z-index: 1;
}
.kid-picture-container {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}
.kid-stars {
  cursor: pointer;
  position: absolute;
  bottom: -10px;
  width: 90px;
  height: 50px;
  text-align: center;
  background: black;
  border-radius: 50%;
  user-select: none;
}
.kid-stars-button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 30px;
  background: black;
  border-radius: 50%;
  user-select: none;
  text-align: center;
}
.kid-stars-up {
  position: absolute;
  bottom: 0;
  right: 0;
}
.kid-stars-down {
  position: absolute;
  bottom: 0;
  left: 0;
}
.kid-picture {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid rgba(0, 0, 0, 0);
}
.chore {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  transition: background-color 1s, opacity 1s;
  font-size: 40px;
  user-select: none;
  cursor: pointer;
  border-radius: 50%;
  margin: 5px;
  padding: 5px;
}
.chore img {
  width: 50px;
  height: 50px;
}
.chore-amount {
  cursor: pointer;
  width: 90px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: black;
  border-radius: 50%;
  user-select: none;
  flex-shrink: 0;
}
.chore-container {
  position: relative;
}
.chore-container--open {
  z-index: 50;
}
.chore-buttons {
  z-index: 40;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
}
.chore-button {
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 30px;
  background: black;
  border-radius: 50%;
  user-select: none;
  text-align: center;
}
.chore-up {
  bottom: 0;
  right: 0;
}
.chore-down {
  bottom: 0;
  left: 0;
}
.clock {
  display: inline-block;
  color: black;
  text-align: center;
  font-size: 120px;
  transition: background-color 2s;
  border-radius: 24px;
  padding: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 20px;
}
@media screen and (max-width: 600px) {
  .clock {
    display: none;
  }
}

.clock .date {
  font-size: 40px;
}
.messages {
  border: none;
  overflow: auto;
  outline: none;
  box-shadow: none;
  resize: none;
  width: 450px;
  height: 1000px;
  color: white;
  background-color: black;
  font-size: 60px;
  font-family: "Covered By Your Grace";
  margin: 20px;
}
.keyboard {
  position: absolute;
  font-size: 80px;
  bottom: 0;
  left: 100px;
  white-space: "pre";
}
.logout-remaining {
  background: #f3f23f60;
  height: 5px;
  padding: 0;
}
.logout-remaining-bar {
  background: #f3f23f;
  height: 5px;
  margin: 0;
  padding: 0;
}
.keypad button {
  font-size: 80px;
  width: 100px;
  height: 100px;
  margin-right: 10px;
}
