/* Tennis WIKI - Custom theme additions on top of Material */

:root {
    --md-primary-fg-color:        #2e7d32;
    --md-primary-fg-color--light: #43a047;
    --md-primary-fg-color--dark:  #1b5e20;
    --md-accent-fg-color:         #d4e157;
}

/* Brand */
.md-header__button.md-logo {
    color: var(--md-accent-fg-color);
}

/* Bigger hero on landing */
.md-typeset .grid.cards > ul > li {
    border-radius: 8px;
    transition: transform 0.2s;
}
.md-typeset .grid.cards > ul > li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.2);
}

/* Code blocks with tennis theme */
.md-typeset code {
    background: #f1f8e9;
    color: #2e7d32;
}
.md-typeset pre > code {
    background: #1a472a;
    color: #e8f5e9;
}

/* Custom admonition colors */
.md-typeset .admonition.note,
.md-typeset details.note {
    border-color: #2e7d32;
}
.md-typeset .admonition.tip,
.md-typeset details.tip {
    border-color: #d4e157;
}

/* Missing image placeholder */
img.missing-image {
    border: 2px dashed #ff9800;
    padding: 4px;
    background: #fff3e0;
}

/* Broken link styling */
.broken-link {
    color: #c62828;
    text-decoration: line-through;
}

/* Wiki navigation: highlight current page */
.md-nav__link--active {
    color: #2e7d32 !important;
    font-weight: 600;
}
