/* Custom styles for Prompt Amplifier documentation */

/* Hero section styling */
.md-typeset h1 {
    font-weight: 700;
}

/* Code block improvements */
.md-typeset code {
    background-color: var(--md-code-bg-color);
    border-radius: 4px;
    padding: 0.1em 0.3em;
}

/* Table improvements */
.md-typeset table:not([class]) {
    display: table;
    width: 100%;
}

.md-typeset table:not([class]) th {
    background-color: var(--md-primary-fg-color);
    color: white;
}

/* Admonition customization */
.md-typeset .admonition.note {
    border-color: #448aff;
}

.md-typeset .admonition.tip {
    border-color: #00c853;
}

.md-typeset .admonition.warning {
    border-color: #ff9100;
}

/* Card grid styling */
.md-typeset .grid.cards > ul > li {
    border: 1px solid var(--md-default-fg-color--lightest);
    border-radius: 8px;
    padding: 1rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.md-typeset .grid.cards > ul > li:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Navigation improvements */
.md-nav__link {
    font-size: 0.75rem;
}

/* Footer styling */
.md-footer {
    background-color: var(--md-primary-fg-color);
}

/* Search improvements */
.md-search__input {
    border-radius: 8px;
}

/* Mermaid diagram styling */
.mermaid {
    text-align: center;
    margin: 1rem 0;
}

/* Badge styling */
.md-typeset img[src*="badge"] {
    margin: 0 4px;
}

/* Terminal/code output styling */
.md-typeset pre > code {
    font-size: 0.85em;
}

/* Responsive adjustments */
@media screen and (max-width: 76.1875em) {
    .md-typeset h1 {
        font-size: 1.8rem;
    }
}

/* Custom accent colors */
:root {
    --md-accent-fg-color: #ffab00;
}

[data-md-color-scheme="slate"] {
    --md-accent-fg-color: #ffd740;
}

