/* Prevent overflow of MainLayout MudDrawer */
.no-x-overflow {
    overflow-x: hidden !important;
}


/* NavMenu */
.mud-menu-item {
    background-color: #141414 !important;
}

    .mud-menu-item:hover {
        background-color: rgba(82, 166, 222, 0.3) !important;
    }

.mud-nav-link:hover {
    background-color: transparent !important;
}

.nav-item {
    background-color: transparent;
}

    .nav-item:hover {
        background-color: rgba(82, 166, 222, 0.3);
        transition: background-color 150ms ease;
    }

.nav-active {
    background-color: #292929 !important;
}

.nav-item-active {
    background-color: #292929 !important;
}

/* Page Menu */
.page-menu-toolbar {
    background-color: #141414;
    height: 40px !important;
}

/* Paper Title */
.header-background {
    background-color: #141414 !important;
}

/* Item Style */
.future-date {
    color: #DFA953 !important;
}

.negative-qty {
    color: #D5370B !important;
}

.transparent-qty {
    color: transparent !important;
}

/* Page Printing */
@media print {
    body {
        margin: 0;
    }

        body * {
            visibility: hidden;
        }

    #print-table,
    #print-table * {
        visibility: visible;
    }

    #print-table {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

    .print-container {
        width: 100%;
        overflow-x: auto;
        page-break-inside: avoid;
    }

    .mud-table {
        width: 100%;
        table-layout: auto;
        font-size: 12px;
    }

        .mud-table th,
        .mud-table td {
            padding: 4px;
            color: black !important;
        }
}