/* ======== GLOBAL ======== */
html, body {
    margin: 0;
    padding: 0;
    font-family: "Arial", "Helvetica", sans-serif;
    font-size: 14px;
    background: #f6f6f6;
    color: #202122;
}

/* Wrapper centré */
#content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ======== HEADER ======== */
#site-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border-bottom: 1px solid #a7d7f9;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}

#site-logo {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

#site-title-block {
    display: flex;
    flex-direction: column;
}

#site-title {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: #000;
}

#site-subtitle {
    font-size: 12px;
    color: #54595d;
    margin: 0;
}

/* ======== NAVIGATION (TOP TABS) ======== */
#top-tabs {
    font-size: 12px;
    margin-top: 0.3rem;
}

#top-tabs a {
    color: #0645ad;
    text-decoration: none;
    margin-right: 1rem;
}

#top-tabs a:hover {
    text-decoration: underline;
}

/* ======== LEFT SIDEBAR ======== */
#sidebar {
    width: 200px;
    float: left;
    padding: 0.5rem;
}

#sidebar h3 {
    font-size: 14px;
    border-bottom: 1px solid #a2a9b1;
    margin-top: 1rem;
}

#sidebar a {
    display: block;
    color: #0645ad;
    text-decoration: none;
    padding: 2px 0;
}

#sidebar a:hover,
#sidebar a.current {
    text-decoration: underline;
    background: #f0f0f0;
}

/* ======== MAIN CONTENT ======== */
#content {
    margin-left: 220px;
    background: #ffffff;
    border: 1px solid #a2a9b1;
    padding: 1rem 1.2rem;
}

/* TITRES */
#content h1 {
    font-size: 24px;
    border-bottom: 1px solid #a2a9b1;
    padding-bottom: 0.2rem;
}

#content h2 {
    font-size: 18px;
    border-bottom: 1px solid #c8ccd1;
    padding-bottom: 0.15rem;
    margin-top: 1.4rem;
}

#content h3 {
    font-size: 15px;
    margin-top: 1.1rem;
}

/* PARAGRAPHES */
#content p {
    line-height: 1.5;
    margin: 0.4rem 0;
}

/* LISTES */
#content ul,
#content ol {
    margin: 0.3rem 0 0.6rem 1.6rem;
}

/* LIENS */
#content a {
    color: #0645ad;
    text-decoration: none;
}

#content a:hover {
    text-decoration: underline;
}

/* ======== INFOBOX / TOC ======== */
.infobox,
.toc {
    border: 1px solid #a2a9b1;
    background: #f8f9fa;
    padding: 0.4rem 0.6rem;
    font-size: 12px;
    margin: 0.6rem 0;
}

.toc-title {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

/* ======== TABLES ======== */
table {
    border-collapse: collapse;
    margin: 0.6rem 0;
    font-size: 13px;
}

table th,
table td {
    border: 1px solid #a2a9b1;
    padding: 0.25rem 0.5rem;
}

table th {
    background: #eaecf0;
    font-weight: bold;
}

/* ======== CODE ======== */
code {
    font-family: "Consolas", "Liberation Mono", monospace;
    font-size: 12px;
    background: #f8f9fa;
    padding: 0 2px;
    border: 1px solid #eaecf0;
}

pre {
    font-family: "Consolas", "Liberation Mono", monospace;
    font-size: 12px;
    background: #f8f9fa;
    border: 1px solid #a2a9b1;
    padding: 0.6rem 0.8rem;
    overflow-x: auto;
}

/* ======== FOOTER ======== */
#footer {
    clear: both;
    font-size: 12px;
    color: #54595d;
    padding: 1rem 0;
    text-align: center;
}
