/* documentation.css - Styles for the Manual/Documentation page */

.doc-content {
    padding-top: 0px;
    padding-bottom: 80px;
    width: calc(100% + 35px);
}

/* ---- Page Title Block ---- */
.doc-title-block {
    margin-bottom: 60px;
}

.doc-page-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 6px;
}

.doc-version-badge {
    display: inline-block;
    background-color: #3b82f6;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.doc-intro-text {
    color: #aaaaaa;
    font-size: 16px;
    max-width: 680px;
    line-height: 1.7;
}

/* ---- Section Blocks ---- */
.doc-section {
    margin-bottom: 70px;
}

.doc-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 10px;
}

.doc-section-title {
    font-size: 26px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid #3a3a3a;
}

/* ---- Two-column layout: image + text ---- */
.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.doc-grid.image-right .doc-image-col {
    order: 2;
}

.doc-grid.image-right .doc-text-col {
    order: 1;
}

.doc-image-col img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
    display: block;
}

/* ---- Sub-headings within a section ---- */
.doc-sub-title {
    font-size: 18px;
    font-weight: 400;
    color: #e0e0e0;
    margin-bottom: 14px;
    margin-top: 28px;
}

.doc-sub-title:first-child {
    margin-top: 0;
}

.doc-body {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* ---- Settings definition list ---- */
.doc-settings {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-settings li {
    padding: 12px 0;
    border-bottom: 1px solid #333333;
    font-size: 15px;
    color: #aaaaaa;
    line-height: 1.7;
}

.doc-settings li:last-child {
    border-bottom: none;
}

.doc-settings li strong {
    color: #e0e0e0;
    font-weight: 600;
}

/* ---- Quality table ---- */
.doc-quality-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
}

.doc-quality-table th {
    text-align: left;
    color: #888888;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 12px;
    border-bottom: 1px solid #3a3a3a;
}

.doc-quality-table td {
    color: #aaaaaa;
    padding: 10px 12px;
    border-bottom: 1px solid #2f2f2f;
}

.doc-quality-table tr:last-child td {
    border-bottom: none;
}

.doc-quality-table td:first-child {
    color: #e0e0e0;
    font-weight: 600;
}

/* ---- New Feature badge ---- */
.doc-new-badge {
    display: inline-block;
    background-color: rgba(59, 130, 246, 0.15);
    border: 1px solid #3b82f6;
    color: #3b82f6;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: 10px;
    vertical-align: middle;
}

/* ---- Help callout ---- */
.doc-callout {
    background-color: #1e1e1e;
    border-left: 3px solid #3b82f6;
    border-radius: 0 6px 6px 0;
    padding: 18px 22px;
    margin-top: 30px;
}

.doc-callout p {
    color: #aaaaaa;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.doc-callout a {
    color: #3b82f6;
    text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .doc-content {
        margin-left: 0;
        width: 100%;
    }

    .doc-grid {
        grid-template-columns: 1fr;
    }

    .doc-grid.image-right .doc-image-col,
    .doc-grid.image-right .doc-text-col {
        order: unset;
    }

    .doc-page-title {
        font-size: 28px;
    }

    .doc-section-title {
        font-size: 22px;
    }
}
