:root {
  --green: #a5212b;
  --ink: #2b1214;
  --muted: #786164;
  --line: #ead6d8;
  --bg: #fbf4f4;
  --soft: #f8e5e7;
  --red: #8b1821;
}

[hidden] { display: none !important; }

body { background: linear-gradient(180deg, #fffafa 0%, #fbf1f2 100%); }
#app { background: #fffafa; }
.login-card { box-shadow: 0 18px 65px rgba(109, 22, 30, .12); }
.sticky-actions { background: rgba(255, 250, 250, .92); }

.category-group {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.category-main {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--soft);
  color: var(--green);
  font-size: 1.05rem;
}
.category-children { padding: 3px 16px 8px; }
.category-children > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.category-children > div:last-child { border-bottom: 0; }
.category-children span { color: var(--muted); }
