/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-yedqoymxy7] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f8f9fa;
}

main[b-yedqoymxy7] {
    flex: 1;
    overflow-y: auto;
}

.sidebar[b-yedqoymxy7] {
    background: #1e293b; /* Slate 800 */
    box-shadow: 4px 0 15px rgba(0,0,0,0.05);
    z-index: 1000;
}

@media (max-width: 640px) {
    .sidebar[b-yedqoymxy7] {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100vh;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .sidebar.active[b-yedqoymxy7] {
        left: 0;
    }

    .sidebar-overlay[b-yedqoymxy7] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(2px);
        transition: opacity 0.3s ease;
    }

    .mobile-only-toggle[b-yedqoymxy7] {
        display: inline-block !important;
    }
}

.top-row[b-yedqoymxy7] {
    background: #2563eb; /* Blue 600 */
    color: white;
    height: 4rem;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.content[b-yedqoymxy7] {
    background-color: #f8f9fa;
}

@media (min-width: 641px) {
    .page[b-yedqoymxy7] {
        flex-direction: row;
    }

    .sidebar[b-yedqoymxy7] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-yedqoymxy7] {
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-only-toggle[b-yedqoymxy7] {
        display: none !important;
    }
}

@media print {
    .no-print[b-yedqoymxy7] { display: none !important; }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.top-row[b-wef0woqmu2] {
    height: 4.5rem;
    background-color: #0c1427;
    /* Deep Slate */
}

.navbar-brand[b-wef0woqmu2] {
    font-size: 1.15rem;
    letter-spacing: 0.05rem;
    color: #f8fafc !important;
}

.nav-item[b-wef0woqmu2] {
    font-size: 0.95rem;
}

.nav-item[b-wef0woqmu2]  a {
    color: #94a3b8;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
}

.nav-item[b-wef0woqmu2]  a:hover {
    background-color: rgba(255, 255, 255, 0.04);
    color: #f1f5f9;
}

.nav-item[b-wef0woqmu2]  a.active {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
}

.nav-divider[b-wef0woqmu2] {
    padding: 1.5rem 1.25rem 0.75rem 1.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-scrollable[b-wef0woqmu2] {
    background-color: #0f172a;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 4.5rem);
    overflow-y: auto;
}
/* /Pages/Inventory.razor.rz.scp.css */
/* Stepper Progress Bar */
.step-progress[b-1bxrw2qfq9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.step[b-1bxrw2qfq9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-icon[b-1bxrw2qfq9] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f1f5f9;
    border: 2px solid #cbd5e1;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.step-label[b-1bxrw2qfq9] {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    transition: all 0.3s ease;
}

.step-line[b-1bxrw2qfq9] {
    flex: 1;
    height: 3px;
    background-color: #cbd5e1;
    margin: 0 5px;
    position: relative;
    top: -18px; /* Align with step-icon middle */
    z-index: 1;
    transition: all 0.3s ease;
}

/* Active State */
.step.active .step-icon[b-1bxrw2qfq9] {
    background-color: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.step.active .step-label[b-1bxrw2qfq9] {
    color: #2563eb;
}

/* Completed State */
.step.completed .step-icon[b-1bxrw2qfq9] {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.step.completed .step-label[b-1bxrw2qfq9] {
    color: #1e293b;
}

.step-line.completed[b-1bxrw2qfq9] {
    background-color: #2563eb;
}

/* Location Overlays & Cards */
.location-detail-overlay[b-1bxrw2qfq9] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
}

.location-detail-card[b-1bxrw2qfq9] {
    background: #ffffff;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
