/* Extra styles for Agentic Software Development docs */

/* Status indicators */
.green {
    color: #10b981;
}

.yellow {
    color: #f59e0b;
}

/* Grid cards styling */
.grid.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.grid.cards > * {
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--md-default-fg-color--lightest);
    transition: all 0.2s;
}

.grid.cards > *:hover {
    border-color: var(--md-accent-fg-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Better spacing for markdown content */
.md-typeset h1 {
    margin-bottom: 1.5rem;
}

.md-typeset h2 {
    margin-top: 2rem;
}

/* Command code blocks */
.md-typeset code {
    font-size: 0.85em;
}

/* Improved admonitions */
.md-typeset .admonition {
    border-left-width: 0.25rem;
}

/* Better table styling for status tables */
.md-typeset table th,
.md-typeset table td {
    padding: 0.75rem;
}

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.status-badge.ready {
    background: #10b981;
    color: white;
}

.status-badge.soon {
    background: #f59e0b;
    color: white;
}

/* Workflow diagrams */
.mermaid {
    text-align: center;
    margin: 2rem 0;
}

/* Better mobile responsiveness */
@media screen and (max-width: 768px) {
    .grid.cards {
        grid-template-columns: 1fr;
    }

    .md-typeset table {
        font-size: 0.8rem;
    }
}

/* Horizontal rule styling */
.md-typeset hr {
    margin: 3rem 0;
}

/* Button spacing */
.md-button {
    margin: 0.25rem 0.5rem 0.25rem 0;
}

/* Improve code block headers */
.md-typeset .highlight > pre {
    margin: 0;
}

/* Tab content styling */
.md-typeset .tabbed-set {
    border-radius: 0.25rem;
}
