/*
 * ScottyLabs theme overrides for mdbook (navy base)
 * Accent: #3b82f6 (blue-500) — matches the Starlight site palette
 */

/* ── Accent colour ─────────────────────────────────────────────────────── */

.navy {
    --sidebar-active: #3b82f6;
    --links:          #3b82f6;
    --inline-code-color: #7dd3fc; /* blue-300 — readable on dark bg */
}

/* Active nav link */
.navy #sidebar .active > a {
    color: #3b82f6;
}

/* Focus rings */
.navy a:focus-visible,
.navy button:focus-visible {
    outline-color: #3b82f6;
}

/* Search highlight */
.navy mark { background-color: #1d4ed8; color: #fff; }

/* ── Sidebar header / title ─────────────────────────────────────────────── */

#sidebar .sidebar-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0.75rem 1rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 0.25rem;
}

/* ScottyLabs wordmark — color the "Scotty" prefix */
#sidebar .sidebar-title a::before {
    content: "Scotty";
    color: #3b82f6;
}

/* ── Typography ─────────────────────────────────────────────────────────── */

.content main {
    line-height: 1.7;
}

/* Heading anchor links (show on hover) */
h2, h3, h4, h5, h6 { position: relative; }

/* ── Code blocks ─────────────────────────────────────────────────────────── */

.navy pre {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.4rem;
}

/* ── Table ────────────────────────────────────────────────────────────────── */

.navy table thead { background-color: rgba(59,130,246,0.15); }
.navy table tr:nth-child(even) { background-color: rgba(255,255,255,0.03); }

/* ── Mermaid diagrams ────────────────────────────────────────────────────── */

pre.mermaid {
    overflow-x: auto;
    padding: 1rem 0.5rem;
    margin: 1.5rem 0;
    background: transparent;
}

pre.mermaid svg {
    max-width: none !important;
    width: auto !important;
    height: auto !important;
    min-width: min(100%, 48rem);
}

/* ── Sidebar logo ─────────────────────────────────────────────────────────── */

#sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.9rem 0.6rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin: -10px -10px 6px;   /* undo the 10px scrollbox padding so logo spans full width */
    text-decoration: none;
    position: sticky;
    top: -10px;                /* stick at top of the absolute scrollbox */
    z-index: 1;
    background-color: var(--sidebar-bg);
}

#sidebar-logo img {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    flex-shrink: 0;
    display: block;
}

#sidebar-logo span {
    font-size: 1rem;
    font-weight: 700;
    color: #e0e0f0;
    letter-spacing: 0.01em;
}


/* ── Quote boxes (mirrors src/styles/quote.css from Starlight) ───────────── */

.doc-quote {
    position: relative;
    margin: 1.5rem 0;
    padding: 1rem 1.25rem 3.75rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    background: rgba(255,255,255,0.03);
}

.doc-quote__text {
    font-size: 1rem;
    color: #e0e0f0;
    line-height: 1.6;
    border: none;
    padding: 0;
    margin: 0;
}

.doc-quote__author {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.doc-quote__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
}
