/* Odin Scan Documentation — Custom Theme
 * Colors aligned with odinscan.ai branding
 */

/* ── Brand Colors ────────────────────────────── */
:root {
    --odin-blue: #2563eb;
    --odin-blue-dark: #1d4ed8;
    --odin-blue-light: #3b82f6;
    --odin-navy: #0f172a;
    --odin-slate: #1e293b;
    --odin-gray: #94a3b8;
    --odin-text: #e2e8f0;
    --odin-accent: #38bdf8;
}

/* ── Sidebar ─────────────────────────────────── */
.sidebar {
    font-size: 1.05rem;
    line-height: 1.8;
}

.sidebar .sidebar-scrollbox {
    padding: 14px 14px;
}

/* ── Content Styling ─────────────────────────── */
.content main {
    max-width: 52rem;
}

.content main h1 {
    border-bottom: 2px solid var(--odin-blue);
    padding-bottom: 0.4rem;
}

/* ── Tables ──────────────────────────────────── */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

table th {
    background-color: rgba(37, 99, 235, 0.1);
    font-weight: 600;
    text-align: left;
    padding: 0.6rem 0.8rem;
}

table td {
    padding: 0.5rem 0.8rem;
}

table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

/* ── Code Blocks ─────────────────────────────── */
pre {
    border-radius: 6px;
    padding: 1rem;
}

code {
    font-size: 0.875em;
}

/* ── Admonitions (blockquote-based) ──────────── */
blockquote {
    border-left: 4px solid var(--odin-blue);
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    background-color: rgba(37, 99, 235, 0.05);
    border-radius: 0 6px 6px 0;
}

/* ── Links ───────────────────────────────────── */
.content a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.content a:hover {
    border-bottom-color: var(--odin-blue-light);
}

/* ── Footer ──────────────────────────────────── */
.nav-chapters {
    font-size: 0.9rem;
}

/* ── Mobile Responsive ───────────────────────── */
@media (max-width: 768px) {
    .content main {
        padding: 0.5rem;
    }

    table {
        font-size: 0.85rem;
    }
}
