/**
 * Wiki report styles — dark theme, consistent with nickerson.css
 */

.wiki-index {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 20px;
}

.wiki-index h1 {
    color: #66ccff;
    font-size: 24px;
    margin-bottom: 24px;
}

.wiki-section-title {
    color: #aac8e4;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 24px 0 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid #333;
}

.wiki-report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wiki-report-list li {
    margin-bottom: 8px;
}

.wiki-report-list a {
    display: block;
    padding: 10px 16px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 4px;
    color: #ccc;
    text-decoration: none;
    transition: background 150ms, border-color 150ms;
}

.wiki-report-list a:hover {
    background: #2a2a2a;
    border-color: #66ccff;
    color: #fff;
}

.wiki-report-title {
    font-weight: 600;
    color: #ddd;
}

.wiki-report-desc {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Report page */
.wiki-report {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 20px;
}

.wiki-report-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #333;
}

.wiki-report-nav a {
    color: #66ccff;
    text-decoration: none;
    font-size: 13px;
}

.wiki-report-nav a:hover {
    text-decoration: underline;
}

/* Rendered markdown content */
.wiki-content {
    color: #dcdcdc;
    line-height: 1.7;
}

.wiki-content h1 {
    color: #66ccff;
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    border-bottom: 1px solid #333;
    padding-bottom: 6px;
}

.wiki-content h2 {
    color: #aac8e4;
    font-size: 20px;
    margin-top: 28px;
    margin-bottom: 10px;
}

.wiki-content h3 {
    color: #88aacc;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.wiki-content h4 {
    color: #888;
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 6px;
}

.wiki-content p {
    margin: 10px 0;
}

.wiki-content a {
    color: #66ccff;
}

.wiki-content strong {
    color: #fff;
}

.wiki-content ul, .wiki-content ol {
    padding-left: 24px;
}

.wiki-content li {
    margin-bottom: 4px;
}

.wiki-content blockquote {
    border-left: 3px solid #66ccff;
    margin: 16px 0;
    padding: 8px 16px;
    color: #aaa;
    background: #1a1a1a;
}

.wiki-content code {
    background: #2a2a2a;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 13px;
    color: #e6db74;
}

.wiki-content pre {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 12px 16px;
    overflow-x: auto;
    margin: 16px 0;
}

.wiki-content pre code {
    background: none;
    padding: 0;
}

.wiki-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.wiki-content th {
    background: #2c3e50;
    color: #ddd;
    padding: 8px 12px;
    text-align: left;
    border: 1px solid #444;
    font-size: 13px;
}

.wiki-content td {
    padding: 6px 12px;
    border: 1px solid #333;
    font-size: 13px;
}

.wiki-content tr:nth-child(even) {
    background: #1a1a1a;
}

.wiki-content hr {
    border: none;
    border-top: 1px solid #333;
    margin: 24px 0;
}

.wiki-content img {
    max-width: 100%;
    border: 1px solid #333;
    border-radius: 4px;
    margin: 12px 0;
}

/* Mermaid diagrams */
.wiki-content .mermaid {
    background: #1a1a1a;
    padding: 16px;
    border-radius: 4px;
    margin: 16px 0;
    text-align: center;
}

