/* /Components/Auth.razor.rz.scp.css */
.not-authorized-container[b-ekj5ipr7im] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b5e3d8;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.not-authorized-card[b-ekj5ipr7im] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    animation: fadeInUp-b-ekj5ipr7im 0.6s ease-out;
}

@keyframes fadeInUp-b-ekj5ipr7im {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section[b-ekj5ipr7im] {
    margin-bottom: 32px;
}

.company-logo[b-ekj5ipr7im] {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 8px;
    background: white;
}

.title[b-ekj5ipr7im] {
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.5rem;
    margin-top: 0;
}

.subtitle[b-ekj5ipr7im] {
    color: #666;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.signin-btn[b-ekj5ipr7im] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #006a60;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 106, 96, 0.3);
    cursor: pointer;
}

    .signin-btn:hover[b-ekj5ipr7im] {
        background: #b5e3d8;
        box-shadow: 0 4px 12px rgba(0, 106, 96, 0.4);
        transform: translateY(-1px);
        text-decoration: none;
        color: white;
    }

.signin-content[b-ekj5ipr7im] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.microsoft-logo[b-ekj5ipr7im] {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 480px) {
    .not-authorized-container[b-ekj5ipr7im] {
        padding: 16px;
    }

    .not-authorized-card[b-ekj5ipr7im] {
        padding: 32px 24px;
    }

    .company-logo[b-ekj5ipr7im] {
        width: 64px;
        height: 64px;
    }

    .title[b-ekj5ipr7im] {
        font-size: 1.25rem;
    }
}

/* Dark theme support */
@media (prefers-color-scheme: dark) {
    .not-authorized-container[b-ekj5ipr7im] {
        background: #d4b8be;
    }

    .not-authorized-card[b-ekj5ipr7im] {
        background: #1a202c;
        color: white;
    }

    .title[b-ekj5ipr7im] {
        color: white;
    }

    .subtitle[b-ekj5ipr7im] {
        color: #cbd5e0;
    }
}
/* /Components/Dialogs/LabelCombinationsViewer.razor.rz.scp.css */
[b-2tso4vbuwr] .table-header-labels .mud-table-cell {
    font-size: 9pt;
}
/* /Components/General/LabelCombinationsTable.razor.rz.scp.css */
.label-combinations-table[b-bh9vzk22j6] {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-height: 0;
    width: 100%;
}

[b-bh9vzk22j6] .label-combinations-grid {
    min-height: 0;
}

[b-bh9vzk22j6] .selected-count {
    font-weight: bold;
    margin-top: 12px;
}
 
/* /Components/Header.razor.rz.scp.css */
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.layout-container[b-y53xxzwv0a] {
    height: 100%;
    display: flex;
    min-height: 0;
    overflow: hidden;
}

[b-y53xxzwv0a] .app-content {
    height: 100%;
    padding-left: 64px;
    padding-right: 64px;
    padding-bottom: 12px;
}

@media only screen and (max-width: 500px) {
    [b-y53xxzwv0a] .app-content {
        height: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
}

.body-content[b-y53xxzwv0a] {
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding-top: 24px;
}

/* /Components/Menu.razor.rz.scp.css */
hr[b-n4qhyk9hcc] {
    width: 100%;
    height: 1px;
    margin-top: 12px;
    margin-bottom: 12px;
}

.spacing[b-n4qhyk9hcc] {
    margin-top: 12px;
}

[b-n4qhyk9hcc] .link {
    color: white;
    margin-top:4px;
    margin-bottom:4px;
}


[b-n4qhyk9hcc] .link-active {
    background-color: transparent;
    color: var(--mud-palette-secondary)
}

[b-n4qhyk9hcc] .link-active::before {
    position: relative;
    left: -6px;
    top: 6px;
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: -10px; /* space between circle and element content */
    border-radius: 50%;
    background-color: var(--mud-palette-secondary); /* change color as needed */
    vertical-align: middle; /* aligns the circle with text */
}

.link-container[b-n4qhyk9hcc] {
    display: flex;
    flex-direction: row;

}

    .link-container div[b-n4qhyk9hcc] {
        margin-left: 8px
    }

.version-text[b-n4qhyk9hcc] {
    color: white;
    margin-left: 28px
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-page[b-6gx3kc5oj7] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
}

.filter-container[b-6gx3kc5oj7] {
    display: flex;
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
}

.filter-text[b-6gx3kc5oj7] {
    flex: 1 1 auto;
}

[b-6gx3kc5oj7] .filter-button {
    flex: 0 0 auto;
    height: 38px;
    margin-left: 12px;
}

[b-6gx3kc5oj7] .busy-overlay {
    height: 100%;
}

.table-container[b-6gx3kc5oj7] {
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    margin-bottom: 32px;
}

[b-6gx3kc5oj7] .create-type-group,
[b-6gx3kc5oj7] .create-form {
    flex: 0 0 auto;
}
/* /Components/Pages/Jobs.razor.rz.scp.css */
.jobs-page[b-2qln5ah7c5] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding-right: 10px;
    padding-left: 10px;
}

[b-2qln5ah7c5] .jobs-toolbar {
    flex: 0 0 auto;
}

[b-2qln5ah7c5] .std-button {
    height: 30px;
    width: 300px;
    text-transform: none;
}

[b-2qln5ah7c5] .table-header-jobs .mud-table-cell .mud-input-control {
    visibility: hidden
}

[b-2qln5ah7c5] .span-link {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
}

.operations-container[b-2qln5ah7c5] {
    display: flex;
    flex-direction: row;
    margin-bottom: 12px;
    align-items: center;
}

.jobs-table-container[b-2qln5ah7c5] {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

[b-2qln5ah7c5] .jobs-table {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

[b-2qln5ah7c5] .jobs-table .mud-table-container {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.jobs-result[b-2qln5ah7c5] {
    flex: 0 0 auto;
    white-space: pre-wrap;
}
/* /Components/Pages/Labels.razor.rz.scp.css */

[b-t8e9diy66p] .std-text {
    color: yellow;
    background-color: #b5e3d8;
    font-size: 11pt;
}

[b-t8e9diy66p] .std-text > .mud-input-control-input-container > .mud-input > input {
    font-size: 11pt;
    color: white;
    padding-left: 10px;
}

[b-t8e9diy66p] .std-text > .mud-input-control-input-container > .mud-input > div {
    font-size: 11pt;
    color: white;
    padding-left: 10px;
}

[b-t8e9diy66p] .std-text > .mud-input-control-input-container > .mud-input > .mud-input-adornment > svg {
    color: white;
}

[b-t8e9diy66p] .std-button {
    height: 50px;
    margin-top: 10px;
    text-transform: none;
}

[b-t8e9diy66p] .info-text {
    font-size: 14pt;
    background-color: white;
    color:black;
}

[b-t8e9diy66p] .label-img {
    height: 600px;
    width:300px;
}

