/* xBloom recipes — light styling on top of the Material/Zensical theme. */

/* Bag photo on a recipe page — centered, rounded, gentle shadow. */
.bag-photo {
  display: block;
  margin: 0.4rem auto 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  max-width: 240px;
  height: auto;
}

/* Status chip under a recipe's heading. */
.status-chip {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--md-default-fg-color--light);
  background: var(--md-code-bg-color);
  border-radius: 999px;
  padding: 0.12rem 0.6rem;
}

/* Ledger index: keep the thumbnail column tight. */
.md-typeset table td img {
  vertical-align: middle;
}

/* "Maintained by Claude Code" footer credit. */
.md-copyright__claude {
  margin-top: 0.25rem;
}
.cc-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--md-footer-fg-color--light);
  font-size: 0.62rem;
  text-decoration: none;
  opacity: 0.85;
}
.cc-credit:hover {
  opacity: 1;
  text-decoration: underline;
}
.cc-mark {
  flex: 0 0 auto;
}
