/* /Areas/Operator/Components/Features/Machines/MachineEntityTabsComponent.razor.rz.scp.css */
.machine-entity-tabs[b-ww8hw35a8q] {
    border-radius: 18px;
}

.machine-entity-tabs :deep(.mud-tabs-tabbar)[b-ww8hw35a8q] {
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.machine-entity-tabs :deep(.mud-tab.mud-tab-active)[b-ww8hw35a8q] {
    font-weight: 700;
}
/* /Areas/Operator/Components/Features/Machines/MachineLiveConsoleComponent.razor.rz.scp.css */
.machine-live-console[b-fpxogkarja] {
    border-radius: 16px;
    /*background: linear-gradient(180deg, rgba(24, 30, 43, 0.42) 0%, rgba(15, 19, 30, 0.42) 100%);*/
    border: 1px solid var(--mud-palette-lines-default);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.machine-live-console.machine-live-console--fullscreen[b-fpxogkarja] {
    height: 100%;
}

.machine-console-active-layout[b-fpxogkarja] {
    display: grid;
    gap: 0.9rem;
}

.console-output-shell[b-fpxogkarja] {
    border-radius: 12px;
/*    background: radial-gradient(circle at top left, rgba(44, 58, 78, 0.72) 0%, rgba(12, 16, 26, 0.88) 70%);
    border: 1px solid rgba(255, 255, 255, 0.14);*/
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.console-command-shell[b-fpxogkarja] {
    border-radius: 12px;
/*    background: linear-gradient(180deg, rgba(23, 30, 45, 0.48) 0%, rgba(16, 20, 31, 0.58) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);*/
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.console-session-placeholder[b-fpxogkarja] {
    border-radius: 14px;
    background: radial-gradient(circle at 18% -8%,rgba(118,186,27,.31),transparent 54%),radial-gradient(circle at 92% 14%,rgba(88,142,24,.28),transparent 46%),linear-gradient(160deg,#0f1410 0%,#171f16 55%,#152015 100%);
    border: 1px solid rgba(159, 196, 109, 0.34);
}

.console-session-placeholder-title[b-fpxogkarja] {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.console-session-placeholder-subtitle[b-fpxogkarja] {
    color: var(--mud-palette-text-secondary);
    max-width: 70ch;
}

.machine-console-header[b-fpxogkarja] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.machine-console-header-title[b-fpxogkarja] {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(202, 230, 170, 0.95);
}

.machine-console-header-hint[b-fpxogkarja] {
    color: var(--mud-palette-text-secondary);
}

.machine-console-editor-shell[b-fpxogkarja] {
    position: relative;
    width: 100%;
    min-height: 1px;
}

.machine-console-editor-shell-output[b-fpxogkarja] {
    --machine-console-output-min-height: 340px;
    min-height: var(--machine-console-output-min-height);
/*    height: clamp(var(--machine-console-output-min-height), calc(100vh - 430px), 860px);*/
}

.machine-console-commandline[b-fpxogkarja] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.3rem 0;
}

.machine-console-prompt[b-fpxogkarja] {
    font-family: Consolas, "Cascadia Code", Menlo, Monaco, monospace;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(168, 214, 119, 0.96);
    background: rgba(15, 21, 31, 0.9);
    border: 1px solid rgba(143, 174, 115, 0.34);
    border-radius: 8px;
    padding: 0.46rem 0.72rem;
    letter-spacing: 0.04em;
    user-select: none;
}

.machine-console-commandline-input[b-fpxogkarja] {
    flex: 1;
    min-width: 0;
}

.machine-console-v2-host[b-fpxogkarja] {
    --machine-console-v2-min-height: 420px;
    min-height: var(--machine-console-v2-min-height);
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(142, 176, 109, 0.28);
    background: #0b0f17;
    overflow: hidden;
}

.machine-live-console[b-fpxogkarja]  .machine-console-monaco {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 1px solid rgba(150, 173, 131, 0.28);
    overflow: hidden;
    background: rgba(7, 10, 16, 0.82);
}

.machine-live-console[b-fpxogkarja]  .machine-console-monaco-output {
    min-height: var(--machine-console-output-min-height) !important;
    height: 100% !important;
}

.machine-console-editor-shell-output[b-fpxogkarja]  .machine-console-monaco-output {
    min-height: var(--machine-console-output-min-height) !important;
    height: 100% !important;
}

.machine-live-console[b-fpxogkarja]  .machine-console-monaco-output > div,
.machine-live-console[b-fpxogkarja]  .machine-console-monaco-output .monaco-editor,
.machine-live-console[b-fpxogkarja]  .machine-console-monaco-output .monaco-editor .overflow-guard,
.machine-live-console[b-fpxogkarja]  .machine-console-monaco-output .monaco-scrollable-element {
    min-height: var(--machine-console-output-min-height) !important;
}

.machine-live-console[b-fpxogkarja]  .machine-console-monaco .monaco-editor,
.machine-live-console[b-fpxogkarja]  .machine-console-monaco > div,
.machine-live-console[b-fpxogkarja]  .machine-console-monaco .monaco-editor .overflow-guard,
.machine-live-console[b-fpxogkarja]  .machine-console-monaco .monaco-editor .monaco-scrollable-element,
.machine-live-console[b-fpxogkarja]  .machine-console-monaco .monaco-scrollable-element {
    height: 100% !important;
    width: 100% !important;
    border-radius: 10px;
}

.machine-live-console[b-fpxogkarja]  .machine-console-commandline-input .mud-input-control {
    margin-top: 0;
}

.machine-live-console[b-fpxogkarja]  .machine-console-commandline-input .mud-input-slot {
    background: rgba(9, 13, 20, 0.92);
    border-radius: 9px;
    border: 1px solid rgba(145, 174, 120, 0.3);
}

.machine-live-console[b-fpxogkarja]  .machine-console-commandline-input input {
    font-family: Consolas, "Cascadia Code", Menlo, Monaco, monospace;
    color: rgba(228, 242, 212, 0.97);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-terminal {
    height: var(--machine-console-v2-min-height);
    min-height: var(--machine-console-v2-min-height);
    display: flex;
    flex-direction: column;
    background: #000000;
    color: #d8e6ca;
    font-family: Consolas, "Cascadia Code", Menlo, Monaco, monospace;
    font-size: 0.95rem;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-output {
    flex: 1;
    overflow: auto;
    padding: 0.8rem 0.95rem 0.35rem 0.95rem;
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.4;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-line {
    min-height: 1.2em;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--prompt {
    color: #95f06d;
    font-weight: 700;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--command {
    color: #f4f7ee;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--stderr-marker,
.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--stderr,
.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--error,
.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--exit-fail {
    color: #ff5f56;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--warning {
    color: #ffd866;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--verbose,
.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--debug {
    color: #4fc1ff;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--meta {
    color: #b6c2d9;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--exit-ok {
    color: #9fd579;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-input-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-top: 1px solid rgba(121, 156, 96, 0.3);
    padding: 0.65rem 0.95rem 0.78rem 0.95rem;
/*    background: linear-gradient(180deg, rgba(13, 18, 27, 0.98) 0%, rgba(9, 13, 20, 0.98) 100%);*/
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-prompt {
    color: rgba(169, 221, 115, 0.96);
    font-weight: 700;
    user-select: none;
    letter-spacing: 0.03em;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-input {
    flex: 1;
    min-width: 0;
    outline: none;
    color: #e8f3dc;
    white-space: pre-wrap;
    word-break: break-word;
}

.machine-live-console[b-fpxogkarja]  .azx-livev2-terminal[data-busy="true"] .azx-livev2-input {
    opacity: 0.72;
}

@media (max-width: 900px) {
    .machine-console-editor-shell-output[b-fpxogkarja] {
        --machine-console-output-min-height: 340px;
        min-height: var(--machine-console-output-min-height);
        /*height: clamp(var(--machine-console-output-min-height), 52vh, 640px);*/
    }

    .machine-console-v2-host[b-fpxogkarja] {
        --machine-console-v2-min-height: 360px;
    }
}

@media (max-width: 650px) {
    .machine-console-commandline[b-fpxogkarja] {
        flex-wrap: wrap;
        align-items: stretch;
    }

    .machine-console-prompt[b-fpxogkarja] {
        width: fit-content;
    }

    .machine-console-commandline-input[b-fpxogkarja] {
        min-width: 100%;
    }
}

.mud-theme-light .machine-live-console[b-fpxogkarja] {
    background: linear-gradient(180deg, rgba(243, 248, 238, 0.82) 0%, rgba(235, 243, 230, 0.88) 100%);
}

.mud-theme-light .console-output-shell[b-fpxogkarja] {
    background: linear-gradient(180deg, rgba(234, 244, 223, 0.7) 0%, rgba(220, 233, 204, 0.84) 100%);
    border-color: rgba(108, 146, 67, 0.36);
}

.mud-theme-light .console-command-shell[b-fpxogkarja] {
    background: linear-gradient(180deg, rgba(243, 248, 238, 0.7) 0%, rgba(232, 241, 225, 0.82) 100%);
    border-color: rgba(114, 148, 74, 0.3);
}

.mud-theme-light .console-session-placeholder[b-fpxogkarja] {
    background: radial-gradient(circle at top right, rgba(199, 228, 170, 0.6) 0%, rgba(238, 246, 231, 0.92) 70%);
    border-color: rgba(119, 158, 73, 0.38);
}

.mud-theme-light .machine-console-header-title[b-fpxogkarja] {
    color: rgba(66, 103, 29, 0.94);
}

.mud-theme-light .machine-console-prompt[b-fpxogkarja] {
    background: rgba(241, 247, 235, 0.94);
    color: rgba(54, 94, 25, 0.96);
    border-color: rgba(109, 151, 66, 0.34);
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .machine-console-commandline-input .mud-input-slot {
    background: rgba(250, 252, 247, 0.98);
    border-color: rgba(116, 152, 80, 0.3);
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .machine-console-commandline-input input {
    color: rgba(25, 37, 22, 0.98);
}

.mud-theme-light .machine-console-v2-host[b-fpxogkarja] {
    border-color: rgba(113, 152, 72, 0.34);
    background: #f8fbf5;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-terminal {
    background: #f8fbf5;
    color: #1f3220;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-input-row {
    border-top-color: rgba(112, 150, 74, 0.28);
    background: linear-gradient(180deg, rgba(244, 250, 238, 0.98) 0%, rgba(238, 247, 230, 0.98) 100%);
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-prompt {
    color: rgba(54, 99, 22, 0.96);
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-input {
    color: #1f3320;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--prompt {
    color: #2f7f1f;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--command {
    color: #1f3320;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--stderr-marker,
.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--stderr,
.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--error,
.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--exit-fail {
    color: #b92321;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--warning {
    color: #8a6600;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--verbose,
.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--debug {
    color: #005f9e;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--meta {
    color: #44506b;
}

.mud-theme-light .machine-live-console[b-fpxogkarja]  .azx-livev2-line.azx-livev2-line--exit-ok {
    color: #2f7f1f;
}
/* /Areas/Operator/Components/Features/Machines/VirtualMachines.razor.rz.scp.css */
.machine-toolbar__subtitle[b-0ssbcsekuk] {
    color: var(--mud-palette-text-secondary);
    max-width: 46ch;
}

.machine-expand-button[b-0ssbcsekuk] {
    min-width: 92px;
}

.machine-activity-surface[b-0ssbcsekuk] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 16px;
    padding: 8px;
    background:
        radial-gradient(circle at top right, rgba(118, 186, 27, 0.12), rgba(118, 186, 27, 0) 52%),
        var(--mud-palette-surface);
}

.machine-activity-surface__header[b-0ssbcsekuk] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid var(--mud-palette-lines-default);
    padding: 8px 10px;
    margin-bottom: 6px;
}

.machine-activity-surface__title[b-0ssbcsekuk] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.machine-activity-surface__title-icon[b-0ssbcsekuk] {
    color: var(--mud-palette-primary);
}

.machine-activity-surface__title-copy[b-0ssbcsekuk] {
    display: flex;
    flex-direction: column;
}

.machine-activity-surface__title-copy :deep(.mud-typography-caption)[b-0ssbcsekuk] {
    color: var(--mud-palette-text-secondary);
}

@media only screen and (max-width: 600px) {
    .machine-toolbar__subtitle[b-0ssbcsekuk] {
        max-width: 100%;
    }

    .machine-activity-surface[b-0ssbcsekuk] {
        padding: 6px;
    }

    .machine-activity-surface__header[b-0ssbcsekuk] {
        padding: 8px;
    }
}
/* /Areas/Operator/Dialogs/Machines/MachineLiveConsoleDialog.razor.rz.scp.css */
.machine-live-console-dialog-title[b-zfopks2waf] {
    min-height: 2.5rem;
}

.machine-live-console-dialog-content[b-zfopks2waf] {
    padding: 0.5rem 0.75rem 0.75rem 0.75rem;
    overflow: hidden;
}

.machine-live-console-dialog-content[b-zfopks2waf]  .machine-live-console {
    min-height: clamp(460px, 72vh, 940px);
}

.machine-live-console-dialog-content[b-zfopks2waf]  .machine-live-console > .mud-paper {
    min-height: clamp(420px, 70vh, 900px);
}

.machine-live-console-dialog-content[b-zfopks2waf]  .machine-console-v2-host {
    --machine-console-v2-min-height: clamp(380px, calc(100vh - 460px), 820px);
}

.machine-live-console-dialog-content[b-zfopks2waf]  .machine-live-console.machine-live-console--fullscreen {
    min-height: calc(100vh - 190px);
}

.machine-live-console-dialog-content[b-zfopks2waf]  .machine-live-console.machine-live-console--fullscreen > .mud-paper {
    min-height: calc(100vh - 210px);
}

.machine-live-console-dialog-content[b-zfopks2waf]  .machine-live-console.machine-live-console--fullscreen .machine-console-v2-host {
    --machine-console-v2-min-height: clamp(460px, calc(100vh - 360px), 980px);
}

@media (max-width: 900px) {
    .machine-live-console-dialog-content[b-zfopks2waf] {
        padding: 0.4rem 0.45rem 0.55rem 0.45rem;
    }

    .machine-live-console-dialog-content[b-zfopks2waf]  .machine-live-console {
        min-height: clamp(360px, 72vh, 840px);
    }

    .machine-live-console-dialog-content[b-zfopks2waf]  .machine-console-v2-host {
        --machine-console-v2-min-height: clamp(300px, calc(100vh - 440px), 700px);
    }

    .machine-live-console-dialog-content[b-zfopks2waf]  .machine-live-console.machine-live-console--fullscreen {
        min-height: calc(100vh - 165px);
    }
}
/* /Components/Features/General/AzxEntityHeroComponent.razor.rz.scp.css */
.azx-entity-hero[b-9wpytyackn] {
    border-radius: 22px;
    border: 1px solid rgba(149, 203, 81, 0.32);
    box-shadow: 0 18px 36px rgba(10, 16, 10, 0.2);
}

.azx-entity-hero.azx-entity-hero-compact[b-9wpytyackn]  .azx-front-overview-title {
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    max-width: 20ch;
}

.azx-entity-hero.azx-entity-hero-compact[b-9wpytyackn]  .azx-front-overview-subtitle {
    margin-top: 0.55rem;
}

.azx-entity-hero[b-9wpytyackn]  .mud-paper.mud-paper-inherit-background {
    background-color: transparent;
}

.azx-entity-hero[b-9wpytyackn]  .azx-entity-hero-chip-scope .mud-chip {
    background: rgba(235, 245, 227, 0.16);
    border: 1px solid rgba(192, 227, 152, 0.34);
    color: var(--mud-palette-dark-text);
    backdrop-filter: blur(2px);
}

.azx-entity-hero[b-9wpytyackn]  .azx-entity-hero-chip-scope .mud-chip.mud-chip-filled,
.azx-entity-hero[b-9wpytyackn]  .azx-entity-hero-chip-scope .mud-chip.mud-chip-filled .mud-chip-content,
.azx-entity-hero[b-9wpytyackn]  .azx-entity-hero-chip-scope .mud-chip.mud-chip-filled .mud-chip-icon {
    color: var(--mud-palette-dark-text) !important;
}

.azx-entity-hero[b-9wpytyackn]  .azx-entity-hero-chip-scope .mud-chip .mud-chip-icon,
.azx-entity-hero[b-9wpytyackn]  .azx-entity-hero-chip-scope .mud-chip .mud-chip-content {
    color: var(--mud-palette-dark-text);
}

.mud-theme-light .azx-entity-hero[b-9wpytyackn]  .azx-entity-hero-chip-scope .mud-chip {
    background: rgba(222, 238, 203, 0.22);
    border-color: rgba(188, 217, 151, 0.46);
}

.azx-entity-hero-stats[b-9wpytyackn] {
    width: 100%;
}

.azx-entity-hero.application-overview-hero[b-9wpytyackn] {
    border-color: rgba(149, 203, 81, 0.42);
    box-shadow: 0 22px 42px rgba(10, 16, 10, 0.24);
}

@media (max-width: 600px) {
    .azx-entity-hero[b-9wpytyackn] {
        border-radius: 16px;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
/* /Components/Features/General/AzxEntityTabsShellComponent.razor.rz.scp.css */
.azx-entity-tabs-shell[b-xqrk5zd8hp]  .mud-tabs-toolbar {
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.azx-entity-tabs-shell[b-xqrk5zd8hp]  .mud-tab {
    text-transform: none;
    font-weight: 700;
}
/* /Components/Features/General/AzxHeroStatComponent.razor.rz.scp.css */
.azx-entity-hero-stat[b-qimdtxzksp] {
    min-height: 96px;
    border-radius: 14px;
    border: 1px solid rgba(189, 225, 147, 0.34);
    background: linear-gradient(160deg, rgba(18, 27, 18, 0.5) 0%, rgba(18, 27, 18, 0.36) 100%);
}

.azx-entity-hero-stat-icon[b-qimdtxzksp] {
    background: rgba(223, 241, 203, 0.14) !important;
    border: 1px solid rgba(184, 220, 138, 0.3);
}

.azx-entity-hero-stat-label[b-qimdtxzksp] {
    color: rgba(228, 242, 217, 0.82);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
}

.azx-entity-hero-stat-value[b-qimdtxzksp] {
    color: #edf5e6;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.azx-entity-hero-stat-meta[b-qimdtxzksp] {
    color: rgba(232, 242, 223, 0.82);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-y23hamjedx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-y23hamjedx] {
    flex: 1;
}

.sidebar[b-y23hamjedx] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-y23hamjedx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-y23hamjedx]  a, .top-row .btn-link[b-y23hamjedx] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-y23hamjedx] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-y23hamjedx] {
        display: none;
    }

    .top-row.auth[b-y23hamjedx] {
        justify-content: space-between;
    }

    .top-row a[b-y23hamjedx], .top-row .btn-link[b-y23hamjedx] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-y23hamjedx] {
        flex-direction: row;
    }

    .sidebar[b-y23hamjedx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-y23hamjedx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-y23hamjedx], article[b-y23hamjedx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-kkng3cddd5] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-kkng3cddd5] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-kkng3cddd5] {
    font-size: 1.1rem;
}

.oi[b-kkng3cddd5] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-kkng3cddd5] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-kkng3cddd5] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-kkng3cddd5] {
        padding-bottom: 1rem;
    }

    .nav-item[b-kkng3cddd5]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-kkng3cddd5]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-kkng3cddd5]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-kkng3cddd5] {
        display: none;
    }

    .collapse[b-kkng3cddd5] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-kkng3cddd5] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Shared/Entity/EntityDetailsSurfaceComponent.razor.rz.scp.css */
.azx-entity-details-surface[b-5yvtwnfsx4] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 18px;
    background:
        radial-gradient(circle at 0% 0%, rgba(118, 186, 27, 0.1), transparent 40%),
        linear-gradient(180deg, rgba(118, 186, 27, 0.04), rgba(118, 186, 27, 0));
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(10, 16, 10, 0.08);
}

.azx-entity-details-header[b-5yvtwnfsx4] {
    padding: 1rem 1.25rem 0.75rem;
}

.azx-entity-details-divider[b-5yvtwnfsx4] {
    border-color: rgba(118, 186, 27, 0.24);
}

.azx-entity-details-body[b-5yvtwnfsx4] {
    padding: 0.75rem 1.25rem 1.25rem;
}

@media (max-width: 600px) {
    .azx-entity-details-header[b-5yvtwnfsx4] {
        padding: 0.75rem 0.85rem 0.55rem;
    }

    .azx-entity-details-body[b-5yvtwnfsx4] {
        padding: 0.55rem 0.85rem 0.85rem;
    }
}
