* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: #000;
  color: #fff;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, sans-serif;
  font-size: 24px;
  line-height: 1.35;
  height: 100%;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

#root {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px 20px;
}

.status {
  color: #888;
  font-size: 20px;
  margin-bottom: 8px;
  min-height: 24px;
}

.list {
  list-style: none;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}
.list::-webkit-scrollbar { display: none; }

.list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: #ccc;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list li.category {
  color: #6cf;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 14px;
  padding-bottom: 4px;
}

.list li.focused {
  color: #fff;
  font-weight: 600;
}

.list li.focused::before {
  content: "▸";
  color: #4ade80;
  margin-right: 4px;
}

.list li.checked {
  color: #555;
  text-decoration: line-through;
}

.list li .qty {
  margin-left: auto;
  color: #6cf;
  font-size: 22px;
  padding-left: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

.footer .hint { color: #444; }
