:root {
    --sm-app-max: 1680px;
    --sm-app-left: 300px;
    --sm-app-right: 300px;
    --sm-app-gap: 18px;

    --sm-app-bg: #050b14;
    --sm-app-panel: #0b1626;
    --sm-app-panel-soft: #0e1b2e;
    --sm-app-panel-deep: #07101c;

    --sm-app-line: #213653;
    --sm-app-line-soft: rgba(105, 151, 215, .22);

    --sm-app-text: #eef5ff;
    --sm-app-muted: #9bacc1;

    --sm-app-blue: #5a94ff;
    --sm-app-green: #2bd39b;

    --sm-app-radius: 21px;
    --sm-app-small-radius: 14px;

    --sm-app-shadow:
        0 20px 60px rgba(0, 0, 0, .24);
}

html {
    scrollbar-gutter: stable;
}

body.sm-unified-app {
    min-width: 320px;
    background:
        radial-gradient(
            circle at 52% -18%,
            rgba(65, 119, 204, .16),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #07111f 0,
            var(--sm-app-bg) 560px
        ) !important;
}

body.sm-unified-app * {
    box-sizing: border-box;
}

body.sm-unified-app .sm-unified-original-host {
    display: block !important;
    width: min(
        var(--sm-app-max),
        calc(100% - 30px)
    ) !important;
    max-width: var(--sm-app-max) !important;
    min-width: 0 !important;
    margin: 18px auto 48px !important;
    padding: 0 !important;
    overflow: visible !important;
}

body.sm-unified-app .sm-unified-shell {
    display: grid !important;
    grid-template-columns:
        var(--sm-app-left)
        minmax(0, 1fr)
        var(--sm-app-right) !important;
    align-items: start !important;
    gap: var(--sm-app-gap) !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.sm-unified-app .sm-unified-shell__left,
body.sm-unified-app .sm-unified-shell__center,
body.sm-unified-app .sm-unified-shell__right {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.sm-unified-app .sm-unified-shell__left,
body.sm-unified-app .sm-unified-shell__right {
    position: sticky !important;
    top: 18px !important;
    align-self: start !important;
    max-height: calc(100vh - 36px);
    overflow: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(105, 151, 215, .45)
        transparent;
}

body.sm-unified-app .sm-unified-shell__center {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

body.sm-unified-app .sm-unified-shell__left > *,
body.sm-unified-app .sm-unified-shell__center > *,
body.sm-unified-app .sm-unified-shell__right > * {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.sm-unified-app .sm-unified-shell__left > *,
body.sm-unified-app .sm-unified-shell__right > * {
    box-shadow: var(--sm-app-shadow);
}

body.sm-unified-app .sm-unified-left-panel {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: var(--sm-app-radius) !important;
}

body.sm-unified-app .sm-unified-center-content {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
}

body.sm-unified-app
    .sm-unified-shell
    :is(
        .card,
        .panel,
        .box
    ) {
    max-width: 100% !important;
    min-width: 0 !important;
    border-color:
        var(--sm-app-line-soft) !important;
    border-radius:
        var(--sm-app-radius) !important;
}

body.sm-unified-app
    .sm-unified-shell__center
    > :is(
        main,
        section,
        article,
        .card,
        .panel,
        .box,
        .layout,
        .contentGrid
    ) {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.sm-unified-app
    .sm-unified-shell__center
    :is(
        input,
        textarea,
        select,
        pre,
        table,
        video,
        img
    ) {
    max-width: 100%;
}

body.sm-unified-app
    .sm-unified-shell__left
    :is(
        #sourceList,
        #wf01SourceList,
        [class*="sourceList"],
        [class*="srcList"]
    ) {
    max-height: calc(100vh - 300px) !important;
    overflow: auto !important;
    padding-right: 2px !important;
}

body.sm-unified-app
    .sm-unified-shell__left
    :is(
        .sourceItem,
        .srcItem,
        .sm-draft-item,
        [data-record-key],
        [data-scene-id],
        [data-wf01-source-id]
    ) {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 0 8px !important;
    padding: 11px 12px !important;
    border-radius:
        var(--sm-app-small-radius) !important;
    text-align: left !important;
    overflow: hidden;
}

body.sm-unified-app
    .sm-unified-shell__left
    :is(
        .sourceItem,
        .srcItem,
        .sm-draft-item,
        [data-record-key],
        [data-scene-id],
        [data-wf01-source-id]
    ):last-child {
    margin-bottom: 0 !important;
}

body.sm-unified-app
    .sm-unified-shell__left
    :is(
        b,
        strong,
        span,
        small,
        em
    ) {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.sm-unified-app
    .sm-unified-shell__right {
    scrollbar-width: none;
}

body.sm-unified-app
    .sm-unified-shell__right::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body.sm-unified-app
    .sm-unified-flow-panel {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    inset: auto !important;
    transform: none !important;
    border-radius:
        var(--sm-app-radius) !important;
}

body.sm-unified-app
    .sm-unified-flow-panel
    :is(
        a,
        button,
        [role="button"]
    ) {
    max-width: 100% !important;
}

body.sm-unified-app
    .sm-unified-flow-panel
    :is(
        h1,
        h2,
        h3,
        h4,
        p,
        span,
        strong,
        small
    ) {
    overflow-wrap: anywhere;
}

body.sm-unified-app
    .sm-unified-empty-left {
    width: 100%;
    min-height: 180px;
    padding: 18px;
    border: 1px solid var(--sm-app-line);
    border-radius: var(--sm-app-radius);
    background:
        linear-gradient(
            180deg,
            rgba(16, 32, 54, .98),
            rgba(7, 17, 30, .98)
        );
    color: var(--sm-app-muted);
    box-shadow: var(--sm-app-shadow);
}

body.sm-unified-app
    .sm-unified-empty-left strong {
    display: block;
    margin-bottom: 8px;
    color: var(--sm-app-text);
    font-size: 15px;
}

body.sm-unified-app
    .sm-unified-home-content {
    min-height: 520px;
}

body.sm-unified-app
    .sm-unified-shell
    :is(
        input,
        textarea,
        select
    ) {
    border-radius: 13px !important;
}

body.sm-unified-app
    .sm-unified-shell
    :is(
        button,
        .btn,
        a.btn
    ) {
    transition:
        transform .14s ease,
        border-color .14s ease,
        background .14s ease,
        box-shadow .14s ease;
}

body.sm-unified-app
    .sm-unified-shell
    :is(
        button,
        .btn,
        a.btn
    ):hover {
    transform: translateY(-1px);
}

@media (min-width: 1820px) {
    :root {
        --sm-app-max: 1730px;
        --sm-app-left: 314px;
        --sm-app-right: 314px;
        --sm-app-gap: 20px;
    }
}

@media (max-width: 1450px) {
    :root {
        --sm-app-left: 270px;
        --sm-app-right: 270px;
        --sm-app-gap: 14px;
    }

    body.sm-unified-app
        .sm-unified-original-host {
        width: calc(100% - 22px) !important;
    }
}

@media (max-width: 1120px) {
    body.sm-unified-app
        .sm-unified-shell {
        grid-template-columns:
            255px
            minmax(0, 1fr) !important;
    }

    body.sm-unified-app
        .sm-unified-shell__right {
        position: static !important;
        grid-column: 1 / -1;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 820px) {
    body.sm-unified-app
        .sm-unified-original-host {
        width: calc(100% - 18px) !important;
        margin-top: 10px !important;
    }

    body.sm-unified-app
        .sm-unified-shell {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.sm-unified-app
        .sm-unified-shell__left,
    body.sm-unified-app
        .sm-unified-shell__right {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
    }

    body.sm-unified-app
        .sm-unified-shell__center {
        order: 1;
    }

    body.sm-unified-app
        .sm-unified-shell__left {
        order: 2;
    }

    body.sm-unified-app
        .sm-unified-shell__right {
        order: 3;
    }
}


/* AM_WF00_EXPLICIT_LAYOUT_CSS_V1_BEGIN */

body.sm-wf00-direct {
    --sm-app-left: 300px;
    --sm-app-right: 300px;
    --sm-app-gap: 18px;
}

body.sm-wf00-direct
    section.layout.sm-wf00-direct-host {
    display: block !important;
    width: min(
        var(--sm-app-max),
        calc(100% - 30px)
    ) !important;
    max-width: var(--sm-app-max) !important;
    margin: 18px auto 48px !important;
    padding: 0 !important;
    overflow: visible !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-shell {
    display: grid !important;
    grid-template-columns:
        var(--sm-app-left)
        minmax(0, 1fr)
        var(--sm-app-right) !important;
    gap: var(--sm-app-gap) !important;
    align-items: start !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-left,
body.sm-wf00-direct
    .sm-wf00-direct-center,
body.sm-wf00-direct
    .sm-wf00-direct-right {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-left,
body.sm-wf00-direct
    .sm-wf00-direct-right {
    position: sticky !important;
    top: 18px !important;
    align-self: start !important;
    max-height: calc(100vh - 36px);
    overflow: auto;
    overscroll-behavior: contain;
}

body.sm-wf00-direct
    .sm-wf00-direct-center {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-main {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 24px !important;
    border-radius: 21px !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-main
    .unfinishedBox {
    display: none !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 16px !important;
    border-radius: 21px !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .24);
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs
    .unfinishedHead {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 11px !important;
    margin-bottom: 13px !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs
    .unfinishedHead button {
    width: 100% !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs
    .unfinishedList {
    display: flex !important;
    flex-direction: column !important;
    gap: 9px !important;
    max-height: calc(100vh - 245px);
    overflow: auto;
    padding-right: 2px;
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs
    .jobRow {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px !important;
    border-radius: 15px !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs
    .jobRow
    > * {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-top: 8px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs
    .jobRow
    > *:first-child {
    margin-top: 0;
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs
    .jobActions {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;
    gap: 7px !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-jobs
    .jobActions
    :is(a, button) {
    width: 100% !important;
    min-width: 0 !important;
    padding: 9px 7px !important;
    text-align: center !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-main
    .grid2 {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;
    gap: 14px !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-main
    .singleQuick {
    grid-template-columns: 1fr !important;
}

body.sm-wf00-direct
    .sm-wf00-direct-main
    .primaryAction {
    width: 100% !important;
    min-height: 116px;
}

body.sm-wf00-direct
    .sm-wf00-direct-main
    :is(
        h1,
        h2,
        h3,
        p,
        span,
        strong
    ) {
    overflow-wrap: anywhere;
}

body.sm-wf00-direct
    .sm-wf00-direct-flow {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    position: static !important;
    transform: none !important;
    border-radius: 21px !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .24);
}

body.sm-wf00-direct
    .sm-wf00-direct-right {
    scrollbar-width: none;
}

body.sm-wf00-direct
    .sm-wf00-direct-right::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body.sm-wf00-direct
    .sm-wf00-direct-flow
    .flow {
    max-height: calc(100vh - 180px) !important;
}

@media (min-width: 1820px) {
    body.sm-wf00-direct {
        --sm-app-left: 314px;
        --sm-app-right: 314px;
        --sm-app-gap: 20px;
    }
}

@media (max-width: 1450px) {
    body.sm-wf00-direct {
        --sm-app-left: 270px;
        --sm-app-right: 270px;
        --sm-app-gap: 14px;
    }
}

@media (max-width: 1120px) {
    body.sm-wf00-direct
        .sm-wf00-direct-shell {
        grid-template-columns:
            255px
            minmax(0, 1fr) !important;
    }

    body.sm-wf00-direct
        .sm-wf00-direct-right {
        position: static !important;
        grid-column: 1 / -1;
        max-height: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 820px) {
    body.sm-wf00-direct
        .sm-wf00-direct-shell {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.sm-wf00-direct
        .sm-wf00-direct-left,
    body.sm-wf00-direct
        .sm-wf00-direct-right {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
    }

    body.sm-wf00-direct
        .sm-wf00-direct-center {
        order: 1;
    }

    body.sm-wf00-direct
        .sm-wf00-direct-left {
        order: 2;
    }

    body.sm-wf00-direct
        .sm-wf00-direct-right {
        order: 3;
    }
}

/* AM_WF00_EXPLICIT_LAYOUT_CSS_V1_END */


/* AM_WF00_STATIC_LAYOUT_CSS_V1_BEGIN */

body.sm-wf00-static-page {
    --sm-wf00-left: 300px;
    --sm-wf00-right: 300px;
    --sm-wf00-gap: 18px;

    background:
        radial-gradient(
            circle at 52% -18%,
            rgba(65, 119, 204, .16),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #07111f 0,
            #050b14 560px
        ) !important;
}

body.sm-wf00-static-page
    .wrap {
    width: min(
        1680px,
        calc(100% - 30px)
    ) !important;
    max-width: 1680px !important;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell {
    display: grid !important;
    grid-template-columns:
        var(--sm-wf00-left)
        minmax(0, 1fr)
        var(--sm-wf00-right) !important;
    gap: var(--sm-wf00-gap) !important;
    align-items: start !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 18px 0 48px !important;
    padding: 0 !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left,
body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .mainCard,
body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .sideCard {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left,
body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .sideCard {
    position: sticky !important;
    top: 18px !important;
    align-self: start !important;
    max-height: calc(100vh - 36px);
    overflow: auto;
    overscroll-behavior: contain;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .mainCard {
    grid-column: 2 !important;
    padding: 24px !important;
    border-radius: 21px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left {
    grid-column: 1 !important;
    scrollbar-width: thin;
    scrollbar-color:
        rgba(105, 151, 215, .45)
        transparent;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .sideCard {
    grid-column: 3 !important;
    border-radius: 21px !important;
    scrollbar-width: none;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .sideCard::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedBox {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 16px !important;
    border-radius: 21px !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .24);
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedHead {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 11px !important;
    margin-bottom: 13px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedHead
    button {
    width: 100% !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedList {
    display: flex !important;
    flex-direction: column !important;
    gap: 9px !important;
    max-height: calc(100vh - 250px);
    overflow: auto;
    padding-right: 2px;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 12px !important;
    border-radius: 15px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    > * {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-top: 8px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    > *:first-child {
    margin-top: 0;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobActions {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;
    gap: 7px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobActions
    :is(a, button) {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 9px 6px !important;
    text-align: center !important;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .mainCard
    .grid2 {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr) !important;
    gap: 14px !important;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .mainCard
    .singleQuick {
    grid-template-columns: 1fr !important;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .mainCard
    .primaryAction {
    width: 100% !important;
    min-height: 118px;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .mainCard
    :is(
        h1,
        h2,
        h3,
        p,
        span,
        strong
    ) {
    overflow-wrap: anywhere;
}

body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .sideCard
    .flow {
    max-height: calc(100vh - 180px) !important;
}

@media (min-width: 1820px) {
    body.sm-wf00-static-page {
        --sm-wf00-left: 314px;
        --sm-wf00-right: 314px;
        --sm-wf00-gap: 20px;
    }
}

@media (max-width: 1450px) {
    body.sm-wf00-static-page {
        --sm-wf00-left: 270px;
        --sm-wf00-right: 270px;
        --sm-wf00-gap: 14px;
    }
}

@media (max-width: 1120px) {
    body.sm-wf00-static-page
        section.layout.sm-wf00-static-shell {
        grid-template-columns:
            255px
            minmax(0, 1fr) !important;
    }

    body.sm-wf00-static-page
        section.layout.sm-wf00-static-shell
        > .sideCard {
        position: static !important;
        grid-column: 1 / -1 !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

@media (max-width: 820px) {
    body.sm-wf00-static-page
        section.layout.sm-wf00-static-shell {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    body.sm-wf00-static-page
        .sm-wf00-static-left,
    body.sm-wf00-static-page
        section.layout.sm-wf00-static-shell
        > .mainCard,
    body.sm-wf00-static-page
        section.layout.sm-wf00-static-shell
        > .sideCard {
        position: static !important;
        grid-column: 1 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    body.sm-wf00-static-page
        section.layout.sm-wf00-static-shell
        > .mainCard {
        order: 1;
    }

    body.sm-wf00-static-page
        .sm-wf00-static-left {
        order: 2;
    }

    body.sm-wf00-static-page
        section.layout.sm-wf00-static-shell
        > .sideCard {
        order: 3;
    }
}

/* AM_WF00_STATIC_LAYOUT_CSS_V1_END */


/* AM_SINGLE_PAGE_SCROLL_COMPACT_V1_BEGIN */

/*
 * WF00-WF13 genel kuralı:
 * İç sütunlarda ayrı kaydırma yoktur.
 * Bütün ekran yalnızca tarayıcının ana kaydırmasıyla hareket eder.
 */

html,
body {
    overflow-x: hidden;
}

body.sm-unified-app
    .sm-unified-shell__left,
body.sm-unified-app
    .sm-unified-shell__right,
body.sm-wf00-static-page
    .sm-wf00-static-left,
body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .sideCard {
    position: static !important;
    top: auto !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    scrollbar-width: auto !important;
}

body.sm-unified-app
    .sm-unified-shell__left
    :is(
        #sourceList,
        #wf01SourceList,
        [class*="sourceList"],
        [class*="srcList"]
    ),
body.sm-unified-app
    .sm-unified-shell__right
    :is(
        .flow,
        [class*="flowList"]
    ),
body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedList,
body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .sideCard
    .flow {
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    padding-right: 0 !important;
}

/*
 * WF00 yarım kalan işler başlığı sadeleştirilir.
 */

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedBox {
    padding: 14px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedHead {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        auto !important;
    align-items: center !important;
    gap: 8px !important;
    margin-bottom: 10px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedHead
    h3 {
    margin: 0 !important;
    font-size: 16px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedHead
    p {
    display: none !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedHead
    button {
    width: auto !important;
    min-width: 0 !important;
    padding: 7px 10px !important;
    border-radius: 10px !important;
    font-size: 11px !important;
}

/*
 * WF00 iş kartları:
 * 1. satırda yalnızca kaynak adı/ID,
 * 2. satırda ulaşılan WF,
 * sağda Devam Et ve Sil.
 */

body.sm-wf00-static-page
    .sm-wf00-static-left
    .unfinishedList {
    gap: 7px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow {
    display: grid !important;
    grid-template-columns:
        minmax(0, 1fr)
        auto !important;
    grid-template-rows:
        auto
        auto !important;
    column-gap: 8px !important;
    row-gap: 5px !important;
    align-items: center !important;
    width: 100% !important;
    padding: 10px !important;
    border-radius: 13px !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    > :nth-child(1) {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    > :nth-child(1)
    :is(
        b,
        strong
    ) {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    max-width: 100% !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
    text-overflow: ellipsis;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    > :nth-child(1)
    :is(
        span,
        small,
        p
    ) {
    display: none !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    > :nth-child(2) {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    min-width: 0 !important;
    max-height: 22px !important;
    margin: 0 !important;
    overflow: hidden !important;
    font-size: 10px !important;
    line-height: 1.2 !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    > :nth-child(2)
    > :not(:first-child) {
    display: none !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    > :nth-child(3) {
    display: none !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    .jobActions {
    display: flex !important;
    grid-column: 2 !important;
    grid-row: 1 / 3 !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
}

body.sm-wf00-static-page
    .sm-wf00-static-left
    .jobRow
    .jobActions
    :is(
        a,
        button
    ) {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 7px 8px !important;
    border-radius: 9px !important;
    font-size: 10px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

/*
 * WF01-WF13 sol kaynak kartları da aynı yoğunlukta tutulur.
 */

body.sm-unified-app
    .sm-unified-shell__left
    :is(
        .sourceItem,
        .srcItem,
        .sm-draft-item,
        [data-record-key],
        [data-scene-id],
        [data-wf01-source-id]
    ) {
    min-height: 0 !important;
    margin: 0 0 7px !important;
    padding: 9px 10px !important;
    border-radius: 12px !important;
}

body.sm-unified-app
    .sm-unified-shell__left
    :is(
        .sourceItem,
        .srcItem,
        .sm-draft-item,
        [data-record-key],
        [data-scene-id],
        [data-wf01-source-id]
    )
    :is(
        b,
        strong
    ) {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    font-size: 12px !important;
    line-height: 1.3 !important;
}

body.sm-unified-app
    .sm-unified-shell__left
    :is(
        .sourceItem,
        .srcItem,
        .sm-draft-item,
        [data-record-key],
        [data-scene-id],
        [data-wf01-source-id]
    )
    :is(
        span,
        small,
        em
    ) {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    margin-top: 3px !important;
    font-size: 10px !important;
    line-height: 1.25 !important;
}

/*
 * Üretim akışı kartları dikey alanı daha az kullanır.
 */

body.sm-unified-app
    .sm-unified-flow-panel
    :is(
        a,
        .sm-flow-card,
        [data-sm-flow-step]
    ),
body.sm-wf00-static-page
    section.layout.sm-wf00-static-shell
    > .sideCard
    .flow
    :is(
        a,
        div
    ) {
    min-height: 0 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

/*
 * Mobilde de iç kaydırma oluşturulmaz.
 */

@media (max-width: 820px) {
    body.sm-unified-app
        .sm-unified-shell__left,
    body.sm-unified-app
        .sm-unified-shell__right,
    body.sm-wf00-static-page
        .sm-wf00-static-left,
    body.sm-wf00-static-page
        section.layout.sm-wf00-static-shell
        > .sideCard {
        position: static !important;
        max-height: none !important;
        overflow: visible !important;
    }
}

/* AM_SINGLE_PAGE_SCROLL_COMPACT_V1_END */

