/* ============================================================
   UGCAMS USER MANUAL
   Professional Documentation Interface
   ============================================================ */


/* ============================================================
   GLOBAL
   ============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: #243746;
    background: #f4f7f9;

    line-height: 1.65;
}


/* ============================================================
   HEADER
   ============================================================ */

.manualHeader {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 42px;

    position: sticky;
    top: 0;

    z-index: 5000;

    background: #082b49;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 3px 18px rgba(0, 0, 0, 0.16);
}


/* BRAND */

.manualBrand {
    display: flex;
    align-items: center;

    gap: 14px;
}

.manualBrand img {
    width: 70px;
    height: 52px;

    object-fit: contain;

    display: block;
}


.manualBrandText {
    display: flex;
    flex-direction: column;

    color: white;

    line-height: 1.15;
}

.manualBrandText strong {
    font-size: 18px;
    font-weight: 700;

    letter-spacing: 1.2px;
}

.manualBrandText span {
    margin-top: 4px;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.68);

    letter-spacing: 0.6px;
}


/* HEADER BUTTON */

.manualPortalButton {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 18px;

    border-radius: 7px;

    text-decoration: none;

    color: white;

    font-size: 13px;
    font-weight: 600;

    background: #0f5f7a;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.manualPortalButton:hover {
    background: #147995;

    transform: translateY(-1px);
}


/* ============================================================
   PAGE LAYOUT
   ============================================================ */

.manualLayout {
    display: flex;

    min-height:
        calc(100vh - 76px);
}


/* ============================================================
   SIDEBAR
   ============================================================ */

.manualSidebar {
    width: 275px;

    flex-shrink: 0;

    position: sticky;
    top: 76px;

    height:
        calc(100vh - 76px);

    overflow-y: auto;

    background: #ffffff;

    border-right:
        1px solid #dce5ea;

    display: flex;
    flex-direction: column;
}


/* SIDEBAR TITLE */

.manualSidebarTitle {
    padding:
        25px 25px 14px;

    font-size: 11px;

    font-weight: 700;

    color: #71838e;

    letter-spacing: 1.5px;
}


/* NAVIGATION */

.manualNavigation {
    padding:
        0 12px;
}


.manualNavItem {
    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 48px;

    padding: 9px 13px;

    margin-bottom: 3px;

    border-radius: 7px;

    color: #4c606d;

    text-decoration: none;

    font-size: 13.5px;

    font-weight: 500;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.manualNavItem:hover {
    background: #edf5f7;

    color: #0c6078;
}


.manualNavItem.active {
    background: #e6f2f4;

    color: #075c73;

    font-weight: 650;
}


.manualNavNumber {
    min-width: 25px;

    color: #8a9aa4;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.5px;
}

.manualNavItem.active .manualNavNumber {
    color: #0b7089;
}


/* SIDEBAR FOOTER */

.manualSidebarFooter {
    margin-top: auto;

    padding:
        22px 25px 25px;

    border-top:
        1px solid #e5ecef;

    color: #78909c;

    font-size: 10px;

    letter-spacing: 1px;
}

.manualSidebarFooter span {
    display: block;

    margin-top: 5px;

    color: #a0adb4;

    letter-spacing: 0.3px;
}


/* ============================================================
   MAIN CONTENT
   ============================================================ */

.manualContent {
    width: 100%;

    max-width: 1180px;

    margin: 0 auto;

    padding:
        0 65px 80px;
}


/* ============================================================
   SECTIONS
   ============================================================ */

.manualSection {
    padding:
        80px 0;

    border-bottom:
        1px solid #dfe7eb;
}


.manualSection:last-child {
    border-bottom: none;
}


/* SECTION LABEL */

.manualSectionLabel {
    display: inline-block;

    margin-bottom: 13px;

    color: #0c7188;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* HEADINGS */

.manualSection h1 {
    margin:
        0 0 22px;

    color: #092f4d;

    font-size:
        clamp(34px, 4vw, 54px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1px;
}


.manualSection h2 {
    margin:
        0 0 20px;

    color: #092f4d;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 700;
}


.manualSection h3 {
    margin:
        38px 0 13px;

    color: #153f57;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 650;
}


.manualSection p {
    max-width: 850px;

    margin:
        0 0 18px;

    color: #536873;

    font-size: 15px;
}


/* ============================================================
   HERO SECTION
   ============================================================ */

.manualHeroSection {
    padding-top: 95px;

    padding-bottom: 75px;
}


.manualLead {
    max-width: 760px !important;

    font-size: 18px !important;

    line-height: 1.75 !important;

    color: #526874 !important;
}


/* ============================================================
   WORKFLOW
   ============================================================ */

.manualWorkflow {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 10px;

    margin-top: 42px;
}


.manualWorkflow > div {
    min-height: 88px;

    padding: 17px 13px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: white;

    border:
        1px solid #dce7eb;

    border-radius: 8px;

    box-shadow:
        0 4px 16px rgba(19, 56, 75, 0.04);
}


.manualWorkflow strong {
    color: #0b6078;

    font-size: 11px;

    letter-spacing: 1px;
}


.manualWorkflow span {
    margin-top: 5px;

    color: #71828b;

    font-size: 11px;
}


/* ============================================================
   SCREENSHOT CARD
   ============================================================ */

.manualScreenshotCard {
    width: 100%;

    margin:
        28px 0 32px;

    background: white;

    border:
        1px solid #dce5ea;

    border-radius: 10px;

    overflow: hidden;

    box-shadow:
        0 8px 28px rgba(17, 52, 69, 0.08);
}


.manualScreenshotCard img {
    width: 100%;

    max-height: 650px;

    object-fit: contain;

    display: block;

    background: #eef2f4;

    cursor: zoom-in;
}


.manualScreenshotCaption {
    padding:
        13px 18px;

    border-top:
        1px solid #e3eaed;

    color: #71838d;

    background: #fbfcfd;

    font-size: 12px;

    font-style: italic;
}


/* ============================================================
   INFO CARDS
   ============================================================ */

.manualInfoGrid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin-top: 25px;
}


.manualInfoCard {
    padding: 20px;

    background: white;

    border:
        1px solid #dce6ea;

    border-left:
        4px solid #0c7188;

    border-radius: 7px;

    display: flex;

    flex-direction: column;

    box-shadow:
        0 4px 15px rgba(15, 52, 69, 0.035);
}


.manualInfoCard strong {
    color: #163e55;

    font-size: 14px;
}


.manualInfoCard span {
    margin-top: 5px;

    color: #74858e;

    font-size: 12px;
}


/* ============================================================
   STEP LIST
   ============================================================ */

.manualSteps {
    max-width: 850px;

    margin:
        18px 0 25px;

    padding-left: 25px;

    color: #526873;
}


.manualSteps li {
    padding:
        6px 0 6px 7px;

    font-size: 14px;
}


.manualSteps strong {
    color: #173f55;
}


/* ============================================================
   NOTE
   ============================================================ */

.manualNote {
    max-width: 850px;

    margin-top: 25px;

    padding:
        17px 20px;

    background: #edf6f7;

    border:
        1px solid #d2e8eb;

    border-left:
        4px solid #0c7188;

    border-radius: 7px;

    color: #526b75;

    font-size: 13px;
}


.manualNote strong {
    color: #0b6077;

    margin-right: 5px;
}


/* ============================================================
   THEMATIC TAGS
   ============================================================ */

.manualThemeTags {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-top: 25px;
}


.manualThemeTags span {
    display: inline-flex;

    align-items: center;

    padding:
        7px 13px;

    border-radius: 20px;

    background: #eaf3f5;

    border:
        1px solid #d4e5e9;

    color: #17657a;

    font-size: 12px;

    font-weight: 600;
}


/* ============================================================
   STATUS CARD
   ============================================================ */

.manualStatusCard {
    max-width: 850px;

    display: flex;

    align-items: flex-start;

    gap: 17px;

    margin-top: 28px;

    padding: 22px;

    background: #ffffff;

    border:
        1px solid #dce5e9;

    border-radius: 8px;

    box-shadow:
        0 5px 18px rgba(20, 55, 70, 0.04);
}


.manualStatusIcon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef3f5;

    color: #71848d;

    font-size: 19px;
}


.manualStatusCard strong {
    display: block;

    margin-bottom: 5px;

    color: #26495c;

    font-size: 14px;
}


.manualStatusCard p {
    margin: 0;

    font-size: 13px;
}


/* ============================================================
   REPORT CARDS
   ============================================================ */

.manualReportGrid {
    max-width: 850px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 25px;

    margin-bottom: 25px;
}


.manualReportGrid div {
    padding: 17px 20px;

    background: white;

    border:
        1px solid #dce5e9;

    border-radius: 7px;

    color: #4c6571;

    font-size: 13px;

    font-weight: 600;
}


/* ============================================================
   QUICK WORKFLOW
   ============================================================ */

.manualClosing {
    text-align: center;
}


.manualClosing p {
    margin:
        25px auto 30px;

    max-width: 760px;
}


.manualQuickWorkflow {
    max-width: 900px;

    margin: 35px auto;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


.manualQuickWorkflow span {
    padding:
        9px 15px;

    border:
        1px solid #d5e3e7;

    border-radius: 6px;

    background: white;

    color: #17657a;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.7px;
}


.manualQuickWorkflow b {
    color: #9aabb2;

    font-size: 14px;
}


/* BACK TO PORTAL */

.manualBackPortal {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding:
        0 23px;

    border-radius: 7px;

    background: #0a6078;

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.manualBackPortal:hover {
    background: #0d7892;

    transform: translateY(-1px);
}


/* ============================================================
   IMAGE LIGHTBOX
   ============================================================ */

.manualLightbox {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 40px;

    background:
        rgba(3, 20, 31, 0.92);
}


.manualLightbox.active {
    display: flex;
}


.manualLightbox img {
    max-width: 94vw;

    max-height: 90vh;

    object-fit: contain;

    border-radius: 5px;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.45);
}


.manualLightboxClose {
    position: absolute;

    top: 18px;
    right: 25px;

    width: 44px;
    height: 44px;

    border: none;

    background:
        rgba(255, 255, 255, 0.12);

    color: white;

    border-radius: 50%;

    font-size: 29px;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease;
}


.manualLightboxClose:hover {
    background:
        rgba(255, 255, 255, 0.22);
}


/* ============================================================
   SCROLLBAR
   ============================================================ */

.manualSidebar::-webkit-scrollbar {
    width: 5px;
}

.manualSidebar::-webkit-scrollbar-track {
    background: transparent;
}

.manualSidebar::-webkit-scrollbar-thumb {
    background: #ccd9de;

    border-radius: 10px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .manualSidebar {
        width: 235px;
    }

    .manualContent {
        padding:
            0 40px 70px;
    }

    .manualWorkflow {
        grid-template-columns:
            repeat(3, 1fr);
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 760px) {

    .manualHeader {
        height: 68px;

        padding:
            0 16px;
    }

    .manualBrand img {
        width: 56px;
        height: 45px;
    }

    .manualBrandText strong {
        font-size: 15px;
    }

    .manualBrandText span {
        font-size: 10px;
    }

    .manualPortalButton {
        min-height: 36px;

        padding:
            0 11px;

        font-size: 11px;
    }


    .manualLayout {
        display: block;
    }


    .manualSidebar {
        width: 100%;

        height: auto;

        position: sticky;

        top: 68px;

        z-index: 4000;

        border-right: none;

        border-bottom:
            1px solid #dce5ea;
    }


    .manualSidebarTitle {
        display: none;
    }


    .manualNavigation {
        display: flex;

        overflow-x: auto;

        padding: 8px;
    }


    .manualNavItem {
        flex-shrink: 0;

        min-height: 38px;

        margin: 0 3px;

        padding:
            7px 10px;

        font-size: 11px;
    }


    .manualNavNumber {
        display: none;
    }


    .manualSidebarFooter {
        display: none;
    }


    .manualContent {
        padding:
            0 20px 55px;
    }


    .manualSection {
        padding:
            55px 0;
    }


    .manualHeroSection {
        padding-top: 60px;
    }


    .manualSection h1 {
        font-size: 34px;
    }


    .manualSection h2 {
        font-size: 27px;
    }


    .manualSection h3 {
        font-size: 18px;
    }


    .manualLead {
        font-size: 16px !important;
    }


    .manualWorkflow {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 8px;
    }


    .manualInfoGrid {
        grid-template-columns: 1fr;
    }


    .manualReportGrid {
        grid-template-columns: 1fr;
    }


    .manualScreenshotCard img {
        max-height: 500px;
    }


    .manualQuickWorkflow {
        gap: 7px;
    }


    .manualQuickWorkflow b {
        display: none;
    }


    .manualLightbox {
        padding: 20px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .manualHeaderActions {
        display: none;
    }


    .manualWorkflow {
        grid-template-columns: 1fr 1fr;
    }


    .manualSection h1 {
        font-size: 30px;
    }


    .manualScreenshotCard {
        border-radius: 7px;
    }


    .manualThemeTags span {
        font-size: 11px;

        padding:
            6px 10px;
    }

}
/* =========================================================
   DIVISION-WISE L-SECTION — DETAILED MANUAL
========================================================= */

.ugcamsManualDetailedItem {
    margin-top: 18px;
}

.ugcamsManualStepBlock {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(20, 55, 85, 0.12);
}

.ugcamsManualStepTitle {
    font-size: 16px;
    font-weight: 700;
    color: #0b3b60;
    margin-bottom: 10px;
}

.ugcamsManualStepBlock p {
    margin: 0 0 12px;
    line-height: 1.7;
    color: #52677a;
}


/* =========================================================
   SCREENSHOT
========================================================= */

.ugcamsManualImageBlock {
    margin: 22px 0 8px;
    padding: 14px;
    background: #f4f7fa;
    border: 1px solid #d9e3eb;
    border-radius: 10px;
}

.ugcamsManualScreenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 7px;
    border: 1px solid #cbd8e2;
    box-shadow: 0 5px 18px rgba(0, 35, 65, 0.10);
}

.ugcamsManualImageCaption {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: #6b7f91;
    font-style: italic;
}


/* =========================================================
   WORKFLOW SUMMARY
========================================================= */

.ugcamsManualWorkflowBox {
    margin-top: 30px;
    padding: 20px 22px;
    background: #f1f6fa;
    border: 1px solid #d4e1ea;
    border-radius: 10px;
}

.ugcamsManualWorkflowTitle {
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #527087;
}

.ugcamsManualWorkflowSteps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
}

.ugcamsManualWorkflowSteps span {
    padding: 7px 12px;
    background: #ffffff;
    border: 1px solid #d4e0e8;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #0b3b60;
}

.ugcamsManualWorkflowSteps b {
    font-size: 13px;
    color: #7890a2;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 700px) {

    .ugcamsManualImageBlock {
        padding: 8px;
    }

    .ugcamsManualWorkflowSteps {
        justify-content: flex-start;
    }

    .ugcamsManualWorkflowSteps b {
        display: none;
    }

    .ugcamsManualWorkflowSteps span {
        margin-bottom: 4px;
    }

}