/* /Components/JobComponent.razor.rz.scp.css */
div.job[b-acym4py4q1] {
    height: 48px;
    background-color: #171717;
    border: 1px solid #2f2f2f;
    border-radius: 8px;
    display: grid;
    grid: 1fr / 48px min-content 1fr min-content 112px;
    box-shadow: 0 0 16px #0000007f;

    & > div.progress {
        grid-area: 1 / 1 / 2 / 5;
        background-color: #ffaf001f;
        border-radius: 7px 0 0 7px;
    }

    & > div.icon[b-acym4py4q1] {
        grid-area: 1 / 1 / 2 / 2;
        display: flex;
        justify-content: center;
        align-items: center;

        & > img {
            width: 32px;
            height: 32px;
            image-rendering: pixelated;
        }
    }

    & > div.title[b-acym4py4q1] {
        grid-area: 1 / 2 / 2 / 3;
        display: flex;
        align-items: center;
        padding-inline: 16px;

        & > h1 {
            font-size: 18px;
            margin: unset;
            color: #ffefbf;
            white-space: nowrap;
            height: 18px;
        }
    }

    & > div.description[b-acym4py4q1] {
        grid-area: 1 / 4 / 2 / 5;
        display: flex;
        justify-content: center;
        padding-inline: 16px;
        white-space: nowrap;
        font-size: 14px;
        line-height: 18px;
        flex-direction: column;

        & img {
            position: relative;
            top: 2px;
            margin-inline: 2px;
        }
    }

    & > div.actions[b-acym4py4q1] {
        grid-area: 1 / 5 / 2 / 6;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 16px;
        padding-inline: 16px;

        & div.action {
            transition: all 100ms ease;
            color: #ffaf00;
            width: 32px;
            height: 32px;
            cursor: pointer;

            &:hover {
                color: #ffefbf;
            }
        }
    }
}

@media screen and (max-width: 550px) {
    div.job[b-acym4py4q1] {
        height: 96px;
        grid: 1fr 1fr / 48px 1fr 112px;

        & > div.progress {
            grid-area: 1 / 1 / 3 / 4;
        }

        & > div.title[b-acym4py4q1] {
            grid-area: 1 / 2 / 2 / 4;
        }

        & > div.description[b-acym4py4q1] {
            grid-area: 2 / 1 / 3 / 3;
        }

        & > div.actions[b-acym4py4q1] {
            grid-area: 2 / 3 / 3 / 4;
        }
    }
}
/* /Components/Jobs.razor.rz.scp.css */
section#jobs[b-pdxahsc3t0] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    width: 100%;
    max-width: 1280px;
}
/* /Layout/MainLayout.razor.rz.scp.css */
div#update[b-jzswhejw2w] {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    background-color: #000000bf;
    backdrop-filter: blur(4px);
    color: #bfbfbfbf;
}
/* /Pages/Home.razor.rz.scp.css */
nav[b-wdyoy0r9sr] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 48px;
    background-color: #171717;
    border-bottom: 1px solid #2f2f2f;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;

    & div.stat {
        display: flex;
        flex-direction: column;
        white-space: nowrap;
        font-size: 14px;
        line-height: 18px;
        text-align: center;

        & img {
            position: relative;
            top: 2px;
            margin-inline: 2px;
        }
    }
}

main[b-wdyoy0r9sr] {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: auto;
    scrollbar-width: none;
    align-items: center;
}
