/* _content/otisakPrinta/Components/Dashboard/Worker/KanbanBoard.razor.rz.scp.css */
/* ── KanbanBoard ─────────────────────────────────────────────── */
.kanban-board[b-r2jnx95hdn] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.kanban-loading[b-r2jnx95hdn] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    opacity: 0.7;
}

/* MudDropContainer wrapper */
.kanban-container[b-r2jnx95hdn] {
    display: flex !important;
    flex-direction: row !important;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    flex: 1;
}

/* ── Kolona ───────────────────────────────────────────────────── */
.kanban-column[b-r2jnx95hdn] {
    flex: 0 0 240px;
    width: 240px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--mud-palette-divider);
    background: rgba(255, 255, 255, 0.015);
    overflow: hidden;
}
.kanban-column:last-child[b-r2jnx95hdn] { border-right: none; }

/* Header kolone */
.kanban-col-header[b-r2jnx95hdn] {
    flex: 0 0 auto;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid transparent;
    background: rgba(255, 255, 255, 0.03);
}

.kanban-col-title[b-r2jnx95hdn] {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mud-palette-text-secondary);
}

.kanban-col-badge[b-r2jnx95hdn] {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 7px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: var(--mud-palette-text-secondary);
    min-width: 20px;
    text-align: center;
}

/* Boja donje linije headera po statusu */
.kanban-col-pending[b-r2jnx95hdn]   { border-bottom-color: var(--mud-palette-warning); }
.kanban-col-printing[b-r2jnx95hdn]  { border-bottom-color: var(--mud-palette-primary); }
.kanban-col-finishing[b-r2jnx95hdn] { border-bottom-color: var(--mud-palette-secondary); }
.kanban-col-pickup[b-r2jnx95hdn]    { border-bottom-color: var(--mud-palette-info); }
.kanban-col-delivery[b-r2jnx95hdn]  { border-bottom-color: #f59e0b; }
.kanban-col-done[b-r2jnx95hdn]      { border-bottom-color: var(--mud-palette-success); }

/* MudDropZone — scrolabilno telo kolone */
.kanban-zone[b-r2jnx95hdn] {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    min-height: 60px;
}

/* Wrapper oko svake kartice — sprečava da MudDrop utiče na layout kartice */
.kanban-card-wrapper[b-r2jnx95hdn] {
    width: 100%;
}

/* Drag placeholder */
.mud-drop-item-drag-preview[b-r2jnx95hdn] {
    opacity: 0.5;
}
/* _content/otisakPrinta/Components/Dashboard/Worker/KanbanCard.razor.rz.scp.css */
/* ── KanbanCard ──────────────────────────────────────────── */
.kbc[b-e3c3f1rygu] {
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-divider);
    border-left: 4px solid var(--mud-palette-primary);
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: box-shadow 0.12s ease, border-color 0.12s ease, transform 0.08s ease;
    user-select: none;
}

.kbc:hover[b-e3c3f1rygu] {
    box-shadow: 0 3px 10px rgba(0,0,0,0.22);
    border-color: var(--mud-palette-primary);
    transform: translateY(-1px);
}

.kbc--highlighted[b-e3c3f1rygu] {
    border-left-color: var(--mud-palette-warning) !important;
    box-shadow: 0 0 0 2px rgba(var(--mud-palette-warning-rgb), 0.35) !important;
}

/* Red 1: ServiceName / Description */
.kbc-header[b-e3c3f1rygu] {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.kbc-desc[b-e3c3f1rygu] {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--mud-palette-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* Red 2: Quantity + chip */
.kbc-meta[b-e3c3f1rygu] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
}

.kbc-qty[b-e3c3f1rygu] {
    font-weight: 700;
    color: var(--mud-palette-text-secondary);
}

.kbc-chip[b-e3c3f1rygu] {
    height: 20px !important;
    font-size: 0.68rem !important;
}

.kbc-divider[b-e3c3f1rygu] {
    height: 1px;
    background: var(--mud-palette-divider);
    margin: 1px 0;
}

/* Generic row */
.kbc-row[b-e3c3f1rygu] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

/* Deadline badge */
.kbc-deadline[b-e3c3f1rygu] {
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}
.kbc-deadline--overdue[b-e3c3f1rygu] { color: var(--mud-palette-error) !important; font-weight: 700; }
.kbc-deadline--urgent[b-e3c3f1rygu]  { color: var(--mud-palette-warning) !important; font-weight: 600; }
.kbc-deadline--soon[b-e3c3f1rygu]    { color: var(--mud-palette-info) !important; }

/* Files */
.kbc-files[b-e3c3f1rygu] {
    font-size: 0.73rem;
}

/* Customer */
.kbc-customer[b-e3c3f1rygu] {
    font-size: 0.80rem;
    color: var(--mud-palette-text-primary);
}

/* Price */
.kbc-price[b-e3c3f1rygu] {
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--mud-palette-success);
}

/* Actions */
.kbc-actions[b-e3c3f1rygu] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.kbc-next-btn[b-e3c3f1rygu] {
    flex: 1;
    font-size: 0.72rem !important;
    height: 28px !important;
    min-width: 0 !important;
}

.kbc-menu[b-e3c3f1rygu] {
    flex-shrink: 0;
}

.kbc-menu-item[b-e3c3f1rygu] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}

.kbc-icon[b-e3c3f1rygu] {
    font-size: 0.9rem !important;
    opacity: 0.65;
}
/* _content/otisakPrinta/Components/Features/Worker/UpitiPopupV2.razor.rz.scp.css */
/* ── Dialog content: ukloni default padding, zaustavi overflow ── */
[b-ns45f1g8h0] .mud-dialog .mud-dialog-content {
    padding: 0 !important;
    overflow: hidden !important;
}

/* ── Grid zauzima celu visinu dialog content-a ── */
[b-ns45f1g8h0] .mud-dialog .mud-dialog-content > .mud-grid {
    height: 75vh;
    min-height: 400px;
}

/* ── Sidebar kolona: fiksna visina, skrolabilna ── */
.popup-sidebar[b-ns45f1g8h0] {
    height: 75vh;
    min-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

/* ── Desna kolona (tabovi): popuni visinu, panels skroluju ── */
[b-ns45f1g8h0] .mud-dialog .mud-tabs {
    display: flex !important;
    flex-direction: column !important;
    height: 75vh !important;
    min-height: 400px;
}

[b-ns45f1g8h0] .mud-dialog .mud-tabs-panels {
    flex-grow: 1 !important;
    overflow-y: auto !important;
}
/* _content/otisakPrinta/Components/Features/Worker/Workbench/ConversationPane.razor.rz.scp.css */
.wc-bubble[b-395cb9vsny] {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    word-break: break-word;
    position: relative;
}

.wc-bubble-me[b-395cb9vsny] {
    align-self: flex-end;
    background: var(--mud-palette-primary-hover);
    border-bottom-right-radius: 4px;
}

.wc-bubble-them[b-395cb9vsny] {
    align-self: flex-start;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-divider);
    border-bottom-left-radius: 4px;
}

.wc-system[b-395cb9vsny] {
    display: flex;
    justify-content: center;
    margin: 6px 0;
}

.wc-system-text[b-395cb9vsny] {
    font-style: italic;
    color: var(--mud-palette-text-secondary);
    font-size: 0.75rem;
    text-align: center;
    padding: 4px 14px;
    background: var(--mud-palette-background);
    border-radius: 20px;
}

.wc-time[b-395cb9vsny] {
    font-size: 0.65rem;
    color: var(--mud-palette-text-disabled);
    margin-top: 4px;
}

.wc-role[b-395cb9vsny] {
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 2px;
}
/* _content/otisakPrinta/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-tsgjvtavaw] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-tsgjvtavaw] {
    flex: 1;
}

.sidebar[b-tsgjvtavaw] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-tsgjvtavaw] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-tsgjvtavaw]  a, .top-row[b-tsgjvtavaw]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-tsgjvtavaw]  a:hover, .top-row[b-tsgjvtavaw]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-tsgjvtavaw]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-tsgjvtavaw] {
        justify-content: space-between;
    }

    .top-row[b-tsgjvtavaw]  a, .top-row[b-tsgjvtavaw]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-tsgjvtavaw] {
        flex-direction: row;
    }

    .sidebar[b-tsgjvtavaw] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-tsgjvtavaw] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-tsgjvtavaw]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-tsgjvtavaw], article[b-tsgjvtavaw] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

    #blazor-error-ui .dismiss[b-tsgjvtavaw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

#blazor-error-ui[b-tsgjvtavaw] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* ============================================
   DESIGN DNA & BRAND REDESIGN
   ============================================ */
:root[b-tsgjvtavaw] {
    --printo-carbon: #121212;
    --printo-accent: #4a9eff;
    --printo-border: #404040;
    --printo-glow: rgba(74, 158, 255, 0.4);
}

/* Redizajnirani TopBar (Guest/Auth) */
.tb-guest-new[b-tsgjvtavaw] {
    background: var(--printo-carbon) !important;
    border-bottom: 1px solid var(--printo-border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Glow efekat za akcionu dugmad */
.btn-printo-glow[b-tsgjvtavaw] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-printo-glow:hover[b-tsgjvtavaw] {
    box-shadow: 0 0 15px var(--printo-glow);
    border-color: var(--printo-accent) !important;
    transform: translateY(-1px);
}
/* _content/otisakPrinta/Components/Layout/PrintoLayout.razor.rz.scp.css */
/*
    PrintoLayout.razor.css
    NEO-ATELIER COMMAND — HUD Grid System
    Architecture: Full-bleed map with transparent HUD overlays.
    Corner brackets replace window borders; scan lines replace opaque fills.
*/

/* ── Root wrapper ──────────────────────────────────────────────── */
.pu-root[b-o4ihhaxyr4] {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* ── Background Map ─────────────────────────────────────────────── */
.pu-map-bg[b-o4ihhaxyr4] {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: auto;
    isolation: isolate;
    transition: filter 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pu-root:has(.tool-mode) .pu-map-bg[b-o4ihhaxyr4] {
    filter: blur(14px) brightness(0.72);
}

/* ═══════════════════════════════════════════════════════════════
   PRINTO UNIVERSE GRID — Normal Mode (12-col HUD geometry)
   ═══════════════════════════════════════════════════════════════ */
.printo-universe[b-o4ihhaxyr4] {
    display: grid;
    grid-template-columns: 1fr 2fr 4fr 2fr 1fr;
    grid-template-rows: auto auto minmax(0, 1fr) auto;
    gap: 8px;
    padding: 8px;
    height: 100%;
    min-height: 0;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    pointer-events: none;
    transition: grid-template-columns 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Enable pointer events on interactive layout elements ──── */
.pu-topbar[b-o4ihhaxyr4],
.glass-panel[b-o4ihhaxyr4],
.pu-tabs[b-o4ihhaxyr4],
.printo-footer-search[b-o4ihhaxyr4] {
    pointer-events: auto;
}

/* ── Remove glass-panel padding inside grid (content self-pads) ── */
.printo-universe .glass-panel[b-o4ihhaxyr4] {
    padding: 0;
}

/* ── Slot assignments — Normal Mode ────────────────────────────── */
.pu-topbar[b-o4ihhaxyr4]      { grid-column: 1 / -1; grid-row: 1; }
.pu-top[b-o4ihhaxyr4]         { grid-column: 2 / 5; grid-row: 2; overflow: hidden; min-height: 0; position: relative; }
.pu-left[b-o4ihhaxyr4]        { grid-column: 2 / 3; grid-row: 3; overflow: hidden; min-height: 0; position: relative; }
.pu-center[b-o4ihhaxyr4]      { grid-column: 3 / 4; grid-row: 3; overflow: hidden; min-height: 0; z-index: 10; display: flex; flex-direction: column; position: relative; }
.pu-right[b-o4ihhaxyr4]       { grid-column: 4 / 5; grid-row: 3; overflow: hidden; min-height: 0; position: relative; }
.pu-bottom[b-o4ihhaxyr4]      { grid-column: 2 / 5; grid-row: 4; overflow: hidden; min-height: 0; position: relative; }

.pu-printo-content[b-o4ihhaxyr4] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

/* ═══════════════════════════════════════════════════════════════
   HUD CORNER BRACKETS — CSS gradient technique
   Each slot gets color-coded corner marks; no full borders.
   ═══════════════════════════════════════════════════════════════ */

/* Shared bracket mixin (emulated via CSS) */
/* LEFT slot — EMERALD (Orders) */
.pu-left.glass-panel[b-o4ihhaxyr4] {
    background:
        /* TL-H */ linear-gradient(#10B981, #10B981) top left / 20px 1px no-repeat,
        /* TL-V */ linear-gradient(#10B981, #10B981) top left / 1px 20px no-repeat,
        /* TR-H */ linear-gradient(#10B981, #10B981) top right / 20px 1px no-repeat,
        /* TR-V */ linear-gradient(#10B981, #10B981) top right / 1px 20px no-repeat,
        /* BL-H */ linear-gradient(#10B981, #10B981) bottom left / 20px 1px no-repeat,
        /* BL-V */ linear-gradient(#10B981, #10B981) bottom left / 1px 20px no-repeat,
        /* BR-H */ linear-gradient(#10B981, #10B981) bottom right / 20px 1px no-repeat,
        /* BR-V */ linear-gradient(#10B981, #10B981) bottom right / 1px 20px no-repeat,
        /* Fill  */ rgba(4, 7, 16, 0.42);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.06), inset 0 0 60px rgba(16, 185, 129, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
}

/* RIGHT slot — PINK (Inquiries) */
.pu-right.glass-panel[b-o4ihhaxyr4] {
    background:
        linear-gradient(#EC4899, #EC4899) top left / 20px 1px no-repeat,
        linear-gradient(#EC4899, #EC4899) top left / 1px 20px no-repeat,
        linear-gradient(#EC4899, #EC4899) top right / 20px 1px no-repeat,
        linear-gradient(#EC4899, #EC4899) top right / 1px 20px no-repeat,
        linear-gradient(#EC4899, #EC4899) bottom left / 20px 1px no-repeat,
        linear-gradient(#EC4899, #EC4899) bottom left / 1px 20px no-repeat,
        linear-gradient(#EC4899, #EC4899) bottom right / 20px 1px no-repeat,
        linear-gradient(#EC4899, #EC4899) bottom right / 1px 20px no-repeat,
        rgba(4, 7, 16, 0.42);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.06), inset 0 0 60px rgba(236, 72, 153, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
}

/* TOP slot — VIOLET (Files) */
.pu-top.glass-panel[b-o4ihhaxyr4] {
    background:
        linear-gradient(#8B5CF6, #8B5CF6) top left / 20px 1px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) top left / 1px 20px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) top right / 20px 1px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) top right / 1px 20px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) bottom left / 20px 1px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) bottom left / 1px 20px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) bottom right / 20px 1px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) bottom right / 1px 20px no-repeat,
        rgba(4, 7, 16, 0.42);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.07), inset 0 0 60px rgba(139, 92, 246, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
}

/* CENTER — BLUE (Printo Nucleus) — heavier fill for readability */
.pu-center.glass-panel[b-o4ihhaxyr4] {
    background:
        linear-gradient(#3B82F6, #3B82F6) top left / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top left / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top right / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top right / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom left / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom left / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom right / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom right / 1px 20px no-repeat,
        rgba(4, 7, 16, 0.42);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.10), inset 0 0 60px rgba(59, 130, 246, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
}

/* BOTTOM slot — BLUE */
.pu-bottom.glass-panel[b-o4ihhaxyr4] {
    background:
        linear-gradient(#3B82F6, #3B82F6) top left / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top left / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top right / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top right / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom left / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom left / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom right / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom right / 1px 20px no-repeat,
        rgba(4, 7, 16, 0.42);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.06), inset 0 0 60px rgba(59, 130, 246, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
}

/* ── HUD Scan Line — top edge glow per slot ──────────────────── */
.pu-left.glass-panel[b-o4ihhaxyr4]::before,
.pu-right.glass-panel[b-o4ihhaxyr4]::before,
.pu-top.glass-panel[b-o4ihhaxyr4]::before,
.pu-center.glass-panel[b-o4ihhaxyr4]::before,
.pu-bottom.glass-panel[b-o4ihhaxyr4]::before,
.pu-printo.glass-panel[b-o4ihhaxyr4]::before,
.pu-tool.glass-panel[b-o4ihhaxyr4]::before {
    content: '';
    position: absolute;
    top: 0; left: 20px; right: 20px;
    height: 1px;
    pointer-events: none;
    z-index: 2;
}
.pu-left.glass-panel[b-o4ihhaxyr4]::before   { background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.75), transparent); }
.pu-right.glass-panel[b-o4ihhaxyr4]::before  { background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.72), transparent); }
.pu-top.glass-panel[b-o4ihhaxyr4]::before    { background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.72), transparent); }
.pu-center.glass-panel[b-o4ihhaxyr4]::before { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.70), transparent); }
.pu-bottom.glass-panel[b-o4ihhaxyr4]::before { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.55), transparent); }
.pu-printo.glass-panel[b-o4ihhaxyr4]::before { background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.60), transparent); }
.pu-tool.glass-panel[b-o4ihhaxyr4]::before   { background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.60), transparent); }

/* ── HUD Tab System ─────────────────────────────────────────── */
.pu-tabs[b-o4ihhaxyr4] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(4, 6, 14, 0.88);
    border-bottom: 1px solid rgba(59, 130, 246, 0.12);
    justify-content: center;
    backdrop-filter: blur(20px);
    flex-shrink: 0;
}

.pu-tab[b-o4ihhaxyr4] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.50);
    padding: 3px 10px;
    border-radius: 0;
    font-size: 0.65rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.18s;
    position: relative;
}

.pu-tab:hover[b-o4ihhaxyr4] {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Active per slot — HUD bracket indicator */
.pu-tab--active[b-o4ihhaxyr4] {
    color: #fff;
}

/* TOP slot (Files) — violet */
.pu-tab--top.pu-tab--active[b-o4ihhaxyr4] {
    background: rgba(139, 92, 246, 0.10);
    border-color: rgba(139, 92, 246, 0.50);
    color: #a78bfa;
    box-shadow: 0 0 12px rgba(139, 92, 246, 0.18);
    animation: pulse-tab-violet-b-o4ihhaxyr4 2.8s ease-in-out infinite;
}

/* LEFT slot (Orders) — emerald */
.pu-tab--left.pu-tab--active[b-o4ihhaxyr4] {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.50);
    color: #34d399;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.18);
    animation: pulse-tab-emerald-b-o4ihhaxyr4 2.8s ease-in-out infinite;
}

/* RIGHT slot (Inquiries) — pink */
.pu-tab--right.pu-tab--active[b-o4ihhaxyr4] {
    background: rgba(236, 72, 153, 0.08);
    border-color: rgba(236, 72, 153, 0.50);
    color: #f472b6;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.18);
    animation: pulse-tab-pink-b-o4ihhaxyr4 2.8s ease-in-out infinite;
}

/* BOTTOM slot — blue */
.pu-tab--bottom.pu-tab--active[b-o4ihhaxyr4] {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.50);
    color: #60a5fa;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.18);
    animation: pulse-tab-blue-b-o4ihhaxyr4 2.8s ease-in-out infinite;
}

@keyframes pulse-tab-violet-b-o4ihhaxyr4 {
    0%, 100% { box-shadow: 0 0 8px rgba(139,92,246,0.16); }
    50%       { box-shadow: 0 0 20px rgba(139,92,246,0.38); }
}
@keyframes pulse-tab-emerald-b-o4ihhaxyr4 {
    0%, 100% { box-shadow: 0 0 8px rgba(16,185,129,0.16); }
    50%       { box-shadow: 0 0 20px rgba(16,185,129,0.38); }
}
@keyframes pulse-tab-pink-b-o4ihhaxyr4 {
    0%, 100% { box-shadow: 0 0 8px rgba(236,72,153,0.16); }
    50%       { box-shadow: 0 0 20px rgba(236,72,153,0.38); }
}
@keyframes pulse-tab-blue-b-o4ihhaxyr4 {
    0%, 100% { box-shadow: 0 0 8px rgba(59,130,246,0.16); }
    50%       { box-shadow: 0 0 20px rgba(59,130,246,0.38); }
}

/* ═══════════════════════════════════════════════════════════════
   TOOL MODE — 8/12 and 4/12 split
   ═══════════════════════════════════════════════════════════════ */
.printo-universe.tool-mode[b-o4ihhaxyr4] {
    grid-template-columns: 8fr 4fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-items: stretch;
}

.pu-tool[b-o4ihhaxyr4]   { grid-column: 1 / 2; grid-row: 2; overflow: hidden; min-height: 0; position: relative; }
.pu-printo[b-o4ihhaxyr4] { grid-column: 2 / 3; grid-row: 2; overflow: hidden; min-height: 0; z-index: 10; display: flex; flex-direction: column; position: relative; }

/* TOOL slot — VIOLET */
.pu-tool.glass-panel[b-o4ihhaxyr4] {
    background:
        linear-gradient(#8B5CF6, #8B5CF6) top left / 20px 1px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) top left / 1px 20px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) top right / 20px 1px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) top right / 1px 20px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) bottom left / 20px 1px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) bottom left / 1px 20px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) bottom right / 20px 1px no-repeat,
        linear-gradient(#8B5CF6, #8B5CF6) bottom right / 1px 20px no-repeat,
        rgba(4, 7, 16, 0.42);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.08), inset 0 0 60px rgba(139, 92, 246, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
}

/* PRINTO slot (tool mode) — BLUE */
.pu-printo.glass-panel[b-o4ihhaxyr4] {
    background:
        linear-gradient(#3B82F6, #3B82F6) top left / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top left / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top right / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) top right / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom left / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom left / 1px 20px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom right / 20px 1px no-repeat,
        linear-gradient(#3B82F6, #3B82F6) bottom right / 1px 20px no-repeat,
        rgba(4, 7, 16, 0.42);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.10), inset 0 0 60px rgba(59, 130, 246, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
}

/* ── Map Search Footer ───────────────────────────────────────── */
.printo-footer-search[b-o4ihhaxyr4] {
    padding: 7px 10px;
    background: rgba(4, 6, 14, 0.88);
    border-top: 1px solid rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.printo-footer-search input[b-o4ihhaxyr4] {
    flex: 1;
    background: rgba(4, 7, 16, 0.80);
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 0;
    color: #F1F5F9;
    padding: 5px 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.74rem;
    outline: none;
    width: 100%;
    letter-spacing: 0.3px;
    transition: border-color 0.18s;
}

.printo-footer-search input[b-o4ihhaxyr4]::placeholder {
    color: rgba(100, 116, 139, 0.5);
    letter-spacing: 0.5px;
}

.printo-footer-search input:focus[b-o4ihhaxyr4] {
    border-color: rgba(59, 130, 246, 0.50);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.12);
}

/* ── HUD Slot Close Button ───────────────────────────────────── */
.slot-close-btn[b-o4ihhaxyr4] {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.40);
    width: 20px;
    height: 20px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    opacity: 0;
    font-size: 0.78rem;
    transition: opacity 0.18s, color 0.18s;
    padding: 0;
    line-height: 1;
}

.pu-top:hover .slot-close-btn[b-o4ihhaxyr4],
.pu-left:hover .slot-close-btn[b-o4ihhaxyr4],
.pu-right:hover .slot-close-btn[b-o4ihhaxyr4],
.pu-bottom:hover .slot-close-btn[b-o4ihhaxyr4] {
    opacity: 1;
}

.slot-close-btn:hover[b-o4ihhaxyr4] {
    color: #ef4444;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS — CSS-only
   ═══════════════════════════════════════════════════════════════ */
.slide-in-left[b-o4ihhaxyr4]   { animation: pu-slideLeft-b-o4ihhaxyr4   280ms cubic-bezier(0.4, 0, 0.2, 1) both; }
.slide-in-right[b-o4ihhaxyr4]  { animation: pu-slideRight-b-o4ihhaxyr4  280ms cubic-bezier(0.4, 0, 0.2, 1) both; }
.slide-in-top[b-o4ihhaxyr4]    { animation: pu-slideTop-b-o4ihhaxyr4    280ms cubic-bezier(0.4, 0, 0.2, 1) both; }
.slide-in-bottom[b-o4ihhaxyr4] { animation: pu-slideBottom-b-o4ihhaxyr4 280ms cubic-bezier(0.4, 0, 0.2, 1) both; }

@keyframes pu-slideLeft-b-o4ihhaxyr4 {
    from { opacity: 0; transform: translateX(-18px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes pu-slideRight-b-o4ihhaxyr4 {
    from { opacity: 0; transform: translateX(18px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes pu-slideTop-b-o4ihhaxyr4 {
    from { opacity: 0; transform: translateY(-14px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pu-slideBottom-b-o4ihhaxyr4 {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE — Printo dominates, side panels hidden
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .printo-universe[b-o4ihhaxyr4] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto auto;
    }
    .printo-universe.tool-mode[b-o4ihhaxyr4] {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    .pu-top[b-o4ihhaxyr4],
    .pu-left[b-o4ihhaxyr4],
    .pu-right[b-o4ihhaxyr4],
    .pu-bottom[b-o4ihhaxyr4] { display: none; }
    .pu-center[b-o4ihhaxyr4] {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    .pu-tool[b-o4ihhaxyr4] { grid-column: 1 / -1; grid-row: 2; }
    .pu-printo[b-o4ihhaxyr4] { display: none; }
}

/* ── Tablet ──────────────────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
    .printo-universe[b-o4ihhaxyr4] {
        grid-template-columns: 1fr 3fr 4fr 3fr 1fr;
    }
    .printo-universe.tool-mode[b-o4ihhaxyr4] {
        grid-template-columns: 2fr 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════
   NEO-ATELIER COCKPIT — System Grid Overlay
   A faint tactical grid spans the entire cockpit surface,
   binding all panels into one unified operational display.
   ═══════════════════════════════════════════════════════════════ */
.printo-universe[b-o4ihhaxyr4]::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 185, 129, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.018) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* Elevated slot glows — heavier presence for operational clarity */
.pu-left.glass-panel[b-o4ihhaxyr4] {
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.09), inset 0 0 50px rgba(16, 185, 129, 0.03);
}
.pu-right.glass-panel[b-o4ihhaxyr4] {
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.09), inset 0 0 50px rgba(236, 72, 153, 0.03);
}
.pu-top.glass-panel[b-o4ihhaxyr4] {
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.09), inset 0 0 50px rgba(139, 92, 246, 0.03);
}
.pu-center.glass-panel[b-o4ihhaxyr4] {
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.14), inset 0 0 70px rgba(59, 130, 246, 0.04);
}

/* ── anim-fade-in & anim-scale-in (tool mode transitions) ───── */
@keyframes anim-fade-in-b-o4ihhaxyr4 {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes anim-scale-in-b-o4ihhaxyr4 {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}
.anim-fade-in[b-o4ihhaxyr4]  { animation: anim-fade-in-b-o4ihhaxyr4  220ms cubic-bezier(0.4, 0, 0.2, 1) both; }
.anim-scale-in[b-o4ihhaxyr4] { animation: anim-scale-in-b-o4ihhaxyr4 240ms cubic-bezier(0.4, 0, 0.2, 1) both; }
.anim-slide-right[b-o4ihhaxyr4] { animation: pu-slideRight-b-o4ihhaxyr4 240ms cubic-bezier(0.4, 0, 0.2, 1) both; }
/* _content/otisakPrinta/Components/Pages/Home.razor.rz.scp.css */
/* TERRAIN — sve stilove drži Home.razor <style> blok (globalni, ne scoped) */
/* _content/otisakPrinta/Components/Shared/InquiryWizard.razor.rz.scp.css */
.iw-shell[b-m7o4bxol24] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    gap: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
}

.iw-head[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.iw-brand[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-primary);
    white-space: nowrap;
}

.iw-brand-dot[b-m7o4bxol24] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 12px var(--blue-glow);
    animation: iw-pulse-b-m7o4bxol24 2.4s ease-in-out infinite;
}

.iw-brand-suffix[b-m7o4bxol24] {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    color: var(--text-muted);
}

@keyframes iw-pulse-b-m7o4bxol24 {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.55;
    }
}

.iw-grid[b-m7o4bxol24] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 0 14px;
}

@media (max-width: 1199px) {
    .iw-grid[b-m7o4bxol24] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 899px) {
    .iw-grid[b-m7o4bxol24] {
        grid-template-columns: 1fr;
    }
}

.iw-col[b-m7o4bxol24] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.iw-card[b-m7o4bxol24] {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.iw-card--full-unused[b-m7o4bxol24] {
    grid-column: 1 / -1;
}

.iw-card-header[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.025);
    flex-shrink: 0;
}

.iw-card-header-icon[b-m7o4bxol24] {
    color: var(--blue);
    font-size: 18px;
}

.iw-card-title[b-m7o4bxol24] {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.iw-card-body[b-m7o4bxol24] {
    padding: 12px 14px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
}

.iw-btn[b-m7o4bxol24] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-primary);
    white-space: nowrap;
}

.iw-btn:disabled[b-m7o4bxol24] {
    opacity: 0.45;
    cursor: not-allowed;
}

.iw-btn--ghost[b-m7o4bxol24] {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--glass-border);
    color: var(--text-primary);
}

.iw-btn--ghost:hover:not(:disabled)[b-m7o4bxol24] {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--glass-border-h);
}

.iw-btn--primary[b-m7o4bxol24] {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 14px var(--blue-glow);
}

.iw-btn--primary:hover:not(:disabled)[b-m7o4bxol24] {
    background: #1976D2;
    box-shadow: 0 6px 20px var(--blue-glow);
}

.iw-btn--accent[b-m7o4bxol24] {
    background: linear-gradient(90deg, var(--blue), var(--purple));
    color: #fff;
    box-shadow: 0 4px 16px var(--blue-glow);
}

.iw-btn--accent:hover:not(:disabled)[b-m7o4bxol24] {
    filter: brightness(1.08);
    box-shadow: 0 6px 22px var(--blue-glow);
}

.iw-btn--danger[b-m7o4bxol24] {
    background: var(--red);
    color: #fff;
}

.iw-btn--icon[b-m7o4bxol24] {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.iw-btn--icon:hover:not(:disabled)[b-m7o4bxol24] {
    color: var(--text-primary);
}

.iw-foot[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.iw-foot-col[b-m7o4bxol24] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    /* pushes to bottom of column */
    padding-top: 8px;
}

.iw-hint[b-m7o4bxol24] {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
}

.iw-option-grid[b-m7o4bxol24] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}

.iw-option[b-m7o4bxol24] {
    padding: 12px 14px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    transition: all var(--transition-fast);
}

.iw-option:hover[b-m7o4bxol24] {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--glass-border-h);
}

.iw-option.is-selected[b-m7o4bxol24] {
    background: var(--blue-dim);
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue) inset;
}

.iw-option-row[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.iw-option-title[b-m7o4bxol24] {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.iw-option-sub[b-m7o4bxol24] {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
    line-height: 1.4;
}

.iw-file-tile[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
}

.iw-file-tile.has-warning[b-m7o4bxol24] {
    border-color: rgba(255, 152, 0, 0.45);
    background: rgba(255, 152, 0, 0.08);
}

.iw-file-name[b-m7o4bxol24] {
    flex: 1;
    min-width: 0;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iw-attached-design[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    background: rgba(168, 85, 247, 0.07);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.iw-attached-design-tag[b-m7o4bxol24] {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.16em;
    color: var(--purple);
    font-weight: 800;
    text-transform: uppercase;
}

.iw-review[b-m7o4bxol24] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.iw-review-cell[b-m7o4bxol24] {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
}

.iw-review-cell .label[b-m7o4bxol24] {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.iw-review-cell .value[b-m7o4bxol24] {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
    word-break: break-word;
}

.iw-review-cell.span-2[b-m7o4bxol24] {
    grid-column: span 2;
}

[b-m7o4bxol24] .iw-grid .mud-input-control {
    margin-top: 0 !important;
}

[b-m7o4bxol24] .iw-grid .mud-input-outlined-border {
    border-color: var(--glass-border) !important;
}

[b-m7o4bxol24] .iw-grid .mud-input.mud-input-outlined .mud-input-outlined-border {
    border-radius: 8px !important;
}

[b-m7o4bxol24] .iw-grid .mud-input-label-margin-dense {
    padding-top: 0 !important;
}

[b-m7o4bxol24] .iw-grid .mud-input-slot {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

[b-m7o4bxol24] .iw-grid .mud-grid-spacing-xs-2 {
    margin: -4px;
}

[b-m7o4bxol24] .iw-grid .mud-grid-spacing-xs-2>.mud-grid-item {
    padding: 4px;
}

[b-m7o4bxol24] .iw-grid .mud-radio-content {
    padding: 0 !important;
}

[b-m7o4bxol24] .iw-grid .mud-alert {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
}

.iw-map[b-m7o4bxol24] {
    height: 220px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: var(--bg-base);
    overflow: hidden;
}

[b-m7o4bxol24] .iw-grid .mud-input-outlined:hover .mud-input-outlined-border,
[b-m7o4bxol24] .iw-grid .mud-input-outlined.mud-input-focused .mud-input-outlined-border {
    border-color: rgba(33, 150, 243, 0.45) !important;
    transition: border-color 0.2s ease;
}

[b-m7o4bxol24] .iw-grid .mud-input-outlined.mud-input-focused .mud-input-outlined-border {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.12);
}

[b-m7o4bxol24] .iw-grid .mud-select-input:hover .mud-input-outlined-border {
    border-color: rgba(33, 150, 243, 0.45) !important;
}

.iw-lines-list[b-m7o4bxol24] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.iw-line-card[b-m7o4bxol24] {
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 14px;
    transition: all var(--transition-fast);
}

.iw-line-card:hover[b-m7o4bxol24] {
    border-color: var(--glass-border-h);
}

.iw-line-head[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.iw-line-tag[b-m7o4bxol24] {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
}

.iw-add-line[b-m7o4bxol24] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--glass-border-h);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.iw-add-line:hover[b-m7o4bxol24] {
    background: var(--blue-dim);
    border-color: var(--blue);
    color: var(--text-primary);
}

.iw-picker[b-m7o4bxol24] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.iw-picker-grid[b-m7o4bxol24] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.iw-picker-card[b-m7o4bxol24] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    min-height: 110px;
}

.iw-picker-card:hover[b-m7o4bxol24] {
    border-color: var(--blue);
    background: var(--blue-dim);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--blue-glow);
}

.iw-picker-icon[b-m7o4bxol24] {
    color: var(--blue);
    margin-bottom: 4px;
}

.iw-picker-label[b-m7o4bxol24] {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.iw-picker-cat[b-m7o4bxol24] {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.iw-param-grid[b-m7o4bxol24] {
    margin-top: 4px;
}

.iw-param-field[b-m7o4bxol24] {
    width: 100%;
}

.iw-param-hint[b-m7o4bxol24] {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    line-height: 1.4;
}

.iw-dim-grid[b-m7o4bxol24] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.iw-dim-grid .mud-input-control[b-m7o4bxol24] {
    flex: 1;
    min-width: 0;
}

.iw-dim-x[b-m7o4bxol24] {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
    padding: 0 2px;
}

.iw-size-grid[b-m7o4bxol24] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 8px;
    margin-bottom: 6px;
}

.iw-size-cell[b-m7o4bxol24] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
}

.iw-size-label[b-m7o4bxol24] {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
}

.iw-head-spacer[b-m7o4bxol24] {
    flex: 1;
}

.iw-btn--outline[b-m7o4bxol24] {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.iw-btn--outline:hover:not(:disabled)[b-m7o4bxol24] {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--glass-border-h);
}

.iw-review-line[b-m7o4bxol24] {
    padding: 8px 12px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 6px;
    font-size: 13px;
}

.iw-review-file[b-m7o4bxol24] {
    padding: 6px 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.iw-review-modal .mud-dialog-content[b-m7o4bxol24] {
    max-height: 70vh;
    overflow-y: auto;
}
/* _content/otisakPrinta/Components/Shared/WizardSteps/InquirySpecLineEditor.razor.rz.scp.css */
.iw-ai-filled[b-3wxagjbt3e] {
    animation: isle-ai-fill-flash-b-3wxagjbt3e 1.5s ease-out;
}

@keyframes isle-ai-fill-flash-b-3wxagjbt3e {
    0% {
        box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.0);
        background-color: rgba(255, 193, 7, 0.0);
    }
    20% {
        box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.55);
        background-color: rgba(255, 193, 7, 0.10);
    }
    100% {
        box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.0);
        background-color: rgba(255, 193, 7, 0.0);
    }
}
/* _content/otisakPrinta/Components/Worker/NotificationBell.razor.rz.scp.css */
.notif-btn[b-35do3a2k76] {
    position: relative;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.notif-btn:hover[b-35do3a2k76] {
    background: rgba(255, 255, 255, 0.1);
}

.unread-dot[b-35do3a2k76] {
    position: absolute;
    top: 6px;
    right: 7px;
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
    border: 1.5px solid var(--bg-base);
    box-shadow: 0 0 6px var(--orange-glow);
}

.notification-popover[b-35do3a2k76] {
    min-width: 320px;
    max-width: 400px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--bg-base);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.notification-header[b-35do3a2k76] {
    padding: 12px 16px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-title[b-35do3a2k76] {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.empty-notifications[b-35do3a2k76] {
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.empty-icon[b-35do3a2k76] {
    color: var(--text-muted);
    opacity: 0.3;
    font-size: 48px;
}

.empty-text[b-35do3a2k76] {
    font-size: 13px;
    color: var(--text-secondary);
}

[b-35do3a2k76] .notification-item:hover {
    background: rgba(var(--mud-palette-action-hover-rgb), 0.08);
}
/* _content/otisakPrinta/Components/Worker/OrderDetailWorker.razor.rz.scp.css */
/* ── Layout ── */
.rn-layout-3col[b-pmow5os67d] {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(400px, 2fr);
    gap: 16px;
    height: 100%;
    padding: 8px;
}

.rn-col-spec[b-pmow5os67d] {
    overflow: hidden;
    height: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.rn-col-status[b-pmow5os67d] {
    overflow-y: auto;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rn-col-prepress[b-pmow5os67d] {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 12px;
}

.rn-prepress-container[b-pmow5os67d] {
    flex-grow: 1;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.rn-card[b-pmow5os67d] {
    background: rgba(20, 25, 35, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 12px;
}

.rn-card-title[b-pmow5os67d] {
    font-size: 11px;
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.rn-file-row[b-pmow5os67d] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: transform 0.2s;
}

.rn-file-row:hover[b-pmow5os67d] {
    transform: translateX(2px);
    background: rgba(255,255,255,0.05);
}

.rn-file-name[b-pmow5os67d] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .rn-layout-3col[b-pmow5os67d] {
        grid-template-columns: 1fr 1fr;
    }
    .rn-col-prepress[b-pmow5os67d] {
        grid-column: span 2;
    }
}

@media (max-width: 800px) {
    .rn-layout-3col[b-pmow5os67d] {
        grid-template-columns: 1fr;
    }
    .rn-col-prepress[b-pmow5os67d] {
        grid-column: span 1;
    }
}

/* ── Spec Cards (Left Column) ── */
.rn-spec-card[b-pmow5os67d] {
    background: rgba(20, 25, 35, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rn-spec-card-title[b-pmow5os67d] {
    font-size: 11px;
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rn-spec-groups[b-pmow5os67d] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

/* MudExpansionPanels customization */
.rn-spec-panels[b-pmow5os67d] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.rn-spec-panel[b-pmow5os67d] {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.rn-spec-panel .mud-expansion-panel-header[b-pmow5os67d] {
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    padding: 8px 12px;
    transition: background 0.2s;
}

.rn-spec-panel .mud-expansion-panel-header:hover[b-pmow5os67d] {
    background: rgba(255,255,255,0.06);
}

.rn-spec-panel .mud-expansion-panel-content[b-pmow5os67d] {
    padding: 8px 4px;
    background: transparent;
}

.rn-spec-panel-details[b-pmow5os67d] {
    padding: 4px 0 !important;
}

.rn-spec-grid[b-pmow5os67d] {
    margin: 0 !important;
}

.rn-spec-field[b-pmow5os67d] {
    padding: 6px 4px;
    border-radius: 4px;
    transition: background 0.15s;
}

.rn-spec-field:hover[b-pmow5os67d] {
    background: rgba(255,255,255,0.02);
}

.rn-spec-field-label[b-pmow5os67d] {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    color: var(--mud-palette-text-secondary) !important;
}

.rn-spec-field-value[b-pmow5os67d] {
    font-size: 13px;
    color: var(--mud-palette-text-primary);
    word-break: break-word;
}

.rn-spec-field-value-row[b-pmow5os67d] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rn-spec-field-value-multiline[b-pmow5os67d] {
    font-size: 13px;
    color: var(--mud-palette-text-primary);
    white-space: pre-wrap;
    word-break: break-word;
}

/* File list compact */
.rn-file-list-compact[b-pmow5os67d] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
    max-height: 300px;
    overflow-y: auto;
}

.rn-file-compact-row[b-pmow5os67d] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    transition: background 0.15s;
}

.rn-file-compact-row:hover[b-pmow5os67d] {
    background: rgba(255,255,255,0.05);
}

.rn-file-compact-name[b-pmow5os67d] {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
}
/* _content/otisakPrinta/Components/Worker/PosloviViewer.razor.rz.scp.css */
/* ── Layout: header fiksan, lista scroll ─────────────────────── */
.poslovi-viewer[b-e2kmfm1ijz] {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--mud-palette-background);
    min-height: 0;
}

.pv-header[b-e2kmfm1ijz] {
    flex: 0 0 auto;
    padding: 8px 10px 6px;
    border-bottom: 1px solid var(--mud-palette-divider);
    background: var(--mud-palette-surface);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pv-header-row[b-e2kmfm1ijz] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pv-title[b-e2kmfm1ijz] {
    font-weight: 800 !important;
    letter-spacing: 0.05em;
    color: var(--mud-palette-text-primary);
}

.pv-count[b-e2kmfm1ijz] {
    opacity: 0.5;
    font-weight: 600;
}

.pv-search[b-e2kmfm1ijz] {
    margin-top: 4px;
}

.pv-filter-row[b-e2kmfm1ijz] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.pv-filter-chip[b-e2kmfm1ijz] {
    font-size: 0.7rem !important;
    height: 24px !important;
    cursor: pointer;
}
.pv-filter-chip .pv-status-dot[b-e2kmfm1ijz] { margin-right: 4px; }

/* ── Scrolabilna lista kartica ───────────────────────────────── */
.pv-list[b-e2kmfm1ijz] {
    flex: 1;  /* flex: 1 1 0 — force flex-basis: 0 */
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
}

.pv-empty[b-e2kmfm1ijz] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0.6;
}

/* ── Kartica ─────────────────────────────────────────────────── */
.pv-card[b-e2kmfm1ijz] {
    display: flex;
    flex-shrink: 0;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-divider);
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.08s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.pv-card:hover[b-e2kmfm1ijz] {
    border-color: var(--mud-palette-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transform: translateY(-1px);
}

.pv-card-stripe[b-e2kmfm1ijz] {
    flex: 0 0 4px;
    align-self: stretch;
}
.pv-card-stripe.pv-status-pending[b-e2kmfm1ijz] { background: var(--mud-palette-warning); }
.pv-card-stripe.pv-status-payment[b-e2kmfm1ijz] { background: var(--mud-palette-warning); }
.pv-card-stripe.pv-status-working[b-e2kmfm1ijz] { background: var(--mud-palette-info); }
.pv-card-stripe.pv-status-qc[b-e2kmfm1ijz]      { background: var(--mud-palette-secondary); }
.pv-card-stripe.pv-status-done[b-e2kmfm1ijz]    { background: var(--mud-palette-success); }

.pv-card-body[b-e2kmfm1ijz] {
    flex: 1;
    padding: 10px 14px;
    min-width: 0; /* allows ellipsis to work in flex children */
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pv-card-row[b-e2kmfm1ijz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pv-id[b-e2kmfm1ijz] {
    font-family: monospace;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--mud-palette-text-primary);
}

.pv-card-customer[b-e2kmfm1ijz] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--mud-palette-text-primary);
    font-weight: 500;
}
.pv-card-customer .mud-icon-root[b-e2kmfm1ijz] { font-size: 0.95rem !important; opacity: 0.7; }

.pv-card-services[b-e2kmfm1ijz] {
    font-size: 0.78rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.pv-card-meta[b-e2kmfm1ijz] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--mud-palette-text-secondary);
    margin-top: 2px;
}
.pv-card-meta .mud-icon-root[b-e2kmfm1ijz] { font-size: 0.85rem !important; opacity: 0.7; }

.pv-card-price[b-e2kmfm1ijz] {
    margin-left: auto;
    color: var(--mud-palette-success);
    font-weight: 600;
}

/* ── Status indikatori (dot + chip) ──────────────────────────── */
.pv-status-dot[b-e2kmfm1ijz] {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.pv-status-dot.pv-status-pending[b-e2kmfm1ijz] { background: var(--mud-palette-warning); }
.pv-status-dot.pv-status-payment[b-e2kmfm1ijz] { background: var(--mud-palette-warning); }
.pv-status-dot.pv-status-working[b-e2kmfm1ijz] { background: var(--mud-palette-info); }
.pv-status-dot.pv-status-qc[b-e2kmfm1ijz]      { background: var(--mud-palette-secondary); }
.pv-status-dot.pv-status-done[b-e2kmfm1ijz]    { background: var(--mud-palette-success); }

.pv-status-chip[b-e2kmfm1ijz] {
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    height: 24px !important;
    font-size: 0.72rem !important;
}
.pv-status-chip .mud-chip-icon[b-e2kmfm1ijz] { font-size: 0.95rem !important; }

/* ── Worker akciono dugme ────────────────────────────────────── */
.pv-card-actions[b-e2kmfm1ijz] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid var(--mud-palette-divider);
}

.pv-action-btn[b-e2kmfm1ijz] {
    flex: 1;
    font-size: 0.75rem !important;
    height: 28px !important;
}
/* _content/otisakPrinta/Components/Worker/RadniNalogCard.razor.rz.scp.css */
/* ── RadniNalogCard ──────────────────────────────────────────── */
.rnc[b-c8pf9j1ret] {
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-divider);
    border-left: 4px solid var(--mud-palette-primary);
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: box-shadow 0.12s ease, border-color 0.12s ease, transform 0.08s ease;
    user-select: none;
}

.rnc:hover[b-c8pf9j1ret] {
    box-shadow: 0 3px 10px rgba(0,0,0,0.22);
    border-color: var(--mud-palette-primary);
    transform: translateY(-1px);
}

.rnc--highlighted[b-c8pf9j1ret] {
    border-left-color: var(--mud-palette-warning) !important;
    box-shadow: 0 0 0 2px rgba(var(--mud-palette-warning-rgb), 0.35) !important;
}

/* Red 1: ID + opis */
.rnc-header[b-c8pf9j1ret] {
    display: flex;
    align-items: baseline;
    gap: 6px;
    overflow: hidden;
}

.rnc-id[b-c8pf9j1ret] {
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--mud-palette-text-secondary);
    flex-shrink: 0;
}

.rnc-desc[b-c8pf9j1ret] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--mud-palette-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* Red 2: kupac */
.rnc-customer[b-c8pf9j1ret] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.80rem;
    color: var(--mud-palette-text-primary);
}

.rnc-divider[b-c8pf9j1ret] {
    height: 1px;
    background: var(--mud-palette-divider);
    margin: 2px 0;
}

/* Red 3: rok + cena */
.rnc-meta[b-c8pf9j1ret] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
}

.rnc-deadline[b-c8pf9j1ret] {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--mud-palette-text-secondary);
}
.rnc-deadline--overdue[b-c8pf9j1ret] { color: var(--mud-palette-error) !important; font-weight: 700; }
.rnc-deadline--urgent[b-c8pf9j1ret]  { color: var(--mud-palette-warning) !important; font-weight: 600; }
.rnc-deadline--soon[b-c8pf9j1ret]    { color: var(--mud-palette-info) !important; }

.rnc-price[b-c8pf9j1ret] {
    margin-left: auto;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--mud-palette-success);
}

/* Red 4: fajlovi */
.rnc-files[b-c8pf9j1ret] {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.73rem;
    color: var(--mud-palette-text-secondary);
    flex-wrap: wrap;
}

.rnc-preflight-chip[b-c8pf9j1ret] {
    height: 18px !important;
    font-size: 0.68rem !important;
}

/* Red 5: akcije */
.rnc-actions[b-c8pf9j1ret] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.rnc-next-btn[b-c8pf9j1ret] {
    flex: 1;
    font-size: 0.72rem !important;
    height: 28px !important;
    min-width: 0 !important;
}

.rnc-menu[b-c8pf9j1ret] {
    flex-shrink: 0;
}

.rnc-menu-item[b-c8pf9j1ret] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
}

/* Mali helper za ikone unutar teksta */
.rnc-icon[b-c8pf9j1ret] {
    font-size: 0.9rem !important;
    opacity: 0.65;
}
/* _content/otisakPrinta/Components/Worker/UpitiViewer.razor.rz.scp.css */
.upiti-viewer[b-wf8y29mxpx] { 
    padding: 10px; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    gap: 8px; 
    overflow: hidden; 
    background: var(--mud-palette-background);
}

.uv-header[b-wf8y29mxpx] { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 4px 2px;
    border-bottom: 1px solid var(--mud-palette-divider);
    margin-bottom: 4px;
}

.uv-count[b-wf8y29mxpx] {
    opacity: 0.6;
    font-family: monospace;
    font-weight: 600;
}

.uv-list[b-wf8y29mxpx] {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 4px;
}

.uv-card[b-wf8y29mxpx] { 
    background: var(--mud-palette-surface); 
    border-radius: 8px; 
    padding: 12px; 
    cursor: pointer; 
    border: 1px solid var(--mud-palette-divider);
    border-left: 4px solid transparent; 
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.uv-card:hover[b-wf8y29mxpx] { 
    border-left-color: var(--mud-palette-primary);
    transform: translateX(2px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.uv-urgent[b-wf8y29mxpx] { 
    border-left-color: var(--mud-palette-error) !important;
    background: rgba(244, 67, 54, 0.02);
}

.uv-card-top[b-wf8y29mxpx] { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    margin-bottom: 8px;
    gap: 12px;
}

.uv-title[b-wf8y29mxpx] { 
    font-weight: 600; 
    font-size: 0.9rem;
    color: var(--mud-palette-text-primary);
    line-height: 1.2;
}

.uv-date[b-wf8y29mxpx] { 
    font-size: 0.75rem; 
    color: var(--mud-palette-text-secondary); 
    white-space: nowrap;
}

.uv-status-badge[b-wf8y29mxpx] { 
    font-size: 0.65rem; 
    padding: 2px 8px; 
    border-radius: 4px; 
    display: inline-flex; 
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.uv-status-active[b-wf8y29mxpx] { background: rgba(33, 150, 243, 0.1); color: #2196F3; }
.uv-status-done[b-wf8y29mxpx] { background: rgba(76, 175, 80, 0.1); color: #4CAF50; }
.uv-status-cancelled[b-wf8y29mxpx] { background: rgba(244, 67, 54, 0.1); color: #F44336; }

.uv-loading[b-wf8y29mxpx] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.uv-empty[b-wf8y29mxpx] { 
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center;
    padding: 48px 24px; 
    color: var(--mud-palette-text-secondary); 
    text-align: center;
}

.uv-card-bottom[b-wf8y29mxpx] { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    margin-top: 4px;
    justify-content: space-between;
}

.uv-mode-chip[b-wf8y29mxpx] {
    font-size: 0.7rem !important;
    height: 22px !important;
    font-weight: 600 !important;
}

.uv-urgent-chip[b-wf8y29mxpx] {
    font-size: 0.65rem !important;
    height: 18px !important;
    padding: 0 6px !important;
}

.uv-status-revising[b-wf8y29mxpx] {
    background: rgba(255, 152, 0, 0.15) !important;
    color: #FF9800 !important;
    border: 1px solid #FF9800;
    animation: uv-pulse-b-wf8y29mxpx 1.5s ease-in-out infinite;
}

.uv-readonly[b-wf8y29mxpx] {
    opacity: 0.65;
    cursor: default;
    border-left-color: var(--mud-palette-text-disabled) !important;
}

.uv-readonly:hover[b-wf8y29mxpx] {
    transform: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.uv-status-lost[b-wf8y29mxpx] {
    background: rgba(158, 158, 158, 0.12);
    color: #9E9E9E;
    border: 1px solid #BDBDBD;
}
@keyframes uv-pulse-b-wf8y29mxpx {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
/* _content/otisakPrinta/Components/Worker/WorkflowStepper.razor.rz.scp.css */
.wf-stepper-container[b-nqqzqaj5y6] {
    padding: 0;
}

[b-nqqzqaj5y6] .wf-stepper .mud-timeline-item {
    min-height: 48px;
}


[b-nqqzqaj5y6] .wf-stepper .mud-timeline-item-content {
    padding-bottom: 8px;
    padding-left: 16px !important;
}

.wf-step[b-nqqzqaj5y6] {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    padding: 4px 8px;
    border-radius: 4px;
}

.wf-step--substep[b-nqqzqaj5y6] {
    padding-left: 20px;
    font-size: 0.88rem;
    opacity: 0.8;
    cursor: default;
}

.wf-step:hover[b-nqqzqaj5y6] {
    background: rgba(255,255,255,0.05);
}

.wf-title[b-nqqzqaj5y6] {
    font-size: 14px;
    font-weight: 500;
}

.wf-step--done[b-nqqzqaj5y6] {
    color: var(--mud-palette-success);
}
.wf-step--done .wf-title[b-nqqzqaj5y6] {
    text-decoration: line-through;
    opacity: 0.8;
}

.wf-step--active[b-nqqzqaj5y6] {
    color: var(--mud-palette-info);
}
.wf-step--active .wf-title[b-nqqzqaj5y6] {
    font-weight: 700;
}
.wf-step--active .wf-icon[b-nqqzqaj5y6] {
    animation: pulse-b-nqqzqaj5y6 2s infinite;
}

.wf-step--pending[b-nqqzqaj5y6] {
    color: var(--mud-palette-text-disabled);
    opacity: 0.5;
}

@keyframes pulse-b-nqqzqaj5y6 {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 4px var(--mud-palette-info));
    }
    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}
