/* PraisonAI Editor docs custom styles */

:root {
  --md-primary-fg-color: #7c3aed;
  --md-accent-fg-color: #a855f7;
}

/* Cards grid on landing page */
.grid.cards > ul {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.cards > ul > li {
  border-radius: 12px;
  border: 1px solid var(--md-default-fg-color--lightest);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.grid.cards > ul > li:hover {
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

/* Mermaid diagram centering */
.mermaid {
  text-align: center;
  margin: 1.5em 0;
}

/* Code copy button always visible */
.md-clipboard {
  opacity: 1 !important;
}

/* Wider nav */
.md-nav--primary .md-nav__link {
  font-size: 0.85rem;
}

/* Badge-like table cells */
td code {
  border-radius: 6px;
  padding: 0.2em 0.45em;
}
