/* --------------------------------------------------------- */
/* Imports                                                   */
/* --------------------------------------------------------- */
/* Icon font (existing) */
@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/* --------------------------------------------------------- */
/* Global base & typography                                  */
/* --------------------------------------------------------- */

h1:focus {
    outline: none;
}

/* Links follow theme primary */
a, .btn-link {
    color: var(--mud-palette-primary, #95B382);
}

/* Primary button (Bootstrap-ish buttons used outside Mud) */
.btn-primary {
    color: #fff;
    background-color: var(--mud-palette-primary, #95B382);
    border-color: color-mix(in oklab, var(--mud-palette-primary, #95B382), #000 10%);
}

.content {
    padding-top: 1.1rem;
}

/* Validation */
.valid.modified:not([type=checkbox]) {
    outline: 2px solid #26b050;
}

.invalid {
    outline: 2px solid #e50000;
}

.validation-message {
    color: #e50000;
}

/* --------------------------------------------------------- */
/* Blazor error UI                                           */
/* --------------------------------------------------------- */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: .6rem 1.25rem .7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: .75rem;
        top: .5rem;
    }

/* --------------------------------------------------------- */
/* Density & sizing tweaks                                   */
/* --------------------------------------------------------- */

/* Keep your dense table cells */
.mud-table-dense * .mud-table-cell {
    padding: 1px 4px;
}

/* Slightly taller tab buttons for tap targets */
.mud-tabs .mud-button-root {
    min-height: 42px;
}

/* Compact buttons globally to avoid inflating table rows */
.mud-button-root {
    min-height: 28px;           /* reduce default button height */
    padding: 0 10px;            /* tighter vertical + horizontal padding */
    line-height: 1.2;           /* avoid extra vertical expansion */
}

.mud-button {
    color: red; /* text buttons use inherited color */
    font-weight: 600; /* slightly bolder */
}     

/* Icon sizing and spacing inside buttons */
.mud-button-root .mud-icon-root,
.mud-button-root .mud-svg-icon {
    font-size: 18px;            /* smaller icons so buttons can be shorter */
}

.mud-button-start-icon,
.mud-button-end-icon {
    margin: 0 4px;              /* tighter icon gap */
}

/* Icon-only buttons (e.g., edit/delete icons) */
.mud-icon-button {
    width: 28px;
    height: 28px;
    padding: 0;
}

.barcode-copy-btn {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    padding: 1px;
}

.barcode-copy-btn .mud-icon-root,
.barcode-copy-btn .mud-svg-icon {
    font-size: 14px;
}

/* Keep MudMenu icon trigger same footprint as tiny barcode icon buttons */
.barcode-copy-btn .mud-button-root {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    padding: 1px;
    line-height: 1;
}

.archive-open-btn {
    display: inline-flex;
    align-items: center;
    margin-left: 4px;
    color: inherit;
    text-decoration: none;
}

.archive-open-btn .mud-icon-root,
.archive-open-btn .mud-svg-icon {
    font-size: 14px;
}

.archive-select-popover {
    min-width: 580px !important;
    width: max-content !important;
    max-width: 90vw;
    max-height: 60vh !important;
    overflow-y: auto !important;
}

.archive-select-popover .mud-list-item-text {
    white-space: nowrap;
}

.archive-select-popover .mud-list-item-icon {
    min-width: 28px;
    margin-right: 4px;
}

.archive-select-popover .mud-list-item {
    column-gap: 4px;
}

.archive-select-item-label {
    display: inline-block;
    width: 100%;
}

.archive-select-popover .mud-list {
    max-height: 60vh !important;
    overflow-y: auto !important;
}

/* --------------------------------------------------------- */
/* ExtractedValues page: compact MudSelect dropdown options  */
/* --------------------------------------------------------- */
/*
   MudSelect Dense="true" compacts the input, but not the opened menu items.
   The three top selects in ExtractedValues.razor use PopoverClass="compact-select-popover"
   so these rules tighten vertical spacing inside their dropdown lists.
*/
.compact-select-popover .mud-list {
    padding-top: 2px;
    padding-bottom: 2px;
}

.compact-select-popover .mud-list-item {
    min-height: 30px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.compact-select-popover .mud-list-item-text {
    margin-top: 0;
    margin-bottom: 0;
}

/*
   ExtractedValues - Filter select only:
   keep the full option list visible with no internal vertical scrollbar.
*/
.filter-select-popover {
    max-height: none !important;
    overflow-y: visible !important;
}

.filter-select-popover .mud-list {
    max-height: none !important;
    overflow-y: visible !important;
}

/* --------------------------------------------------------- */
/* Rich text editor                                          */
/* --------------------------------------------------------- */

.mud-richtext-field {
    border: 1px solid var(--mud-palette-lines-default, rgba(0,0,0,0.12));
    border-radius: 6px;
}

.mud-richtext-toolbar .mud-icon-button {
    width: 30px;
    height: 30px;
}

.mud-richtext-editor {
    padding: 10px;
    border: 1px solid var(--mud-palette-lines-default, rgba(0,0,0,0.12));
    border-radius: 6px;
    background-color: var(--mud-palette-background, #fff);
    color: var(--mud-palette-text-primary, #1e1e1e);
}

.mud-theme-dark .mud-richtext-editor {
    background-color: var(--mud-palette-surface, #1e1e1e);
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255, .8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.editable-field .mud-input-label {
    color: #d32f2f !important;
    font-weight: 800 !important;
}

/* --------------------------------------------------------- */
/* Branding                                                  */
/* --------------------------------------------------------- */

.brand-logo {
    height: 180px;
    width: auto;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,.4));
}

.mud-theme-dark .brand-logo {
    filter: brightness(1.05) drop-shadow(0 5px 5px rgba(0,0,0,.4));
}

@media (max-width: 600px) {
    .brand-logo {
        height: 180px;
    }
}

/* --------------------------------------------------------- */
/* Navigation Drawer (scoped overrides using CSS vars)       */
/* --------------------------------------------------------- */

.nav-drawer {
    --mud-palette-drawer-text: var(--mud-palette-text-primary, #1E1E1E);
    --mud-palette-drawer-icon: var(--mud-palette-text-secondary, #4A4A4A);
}

    .nav-drawer .mud-nav-link,
    .nav-drawer .mud-nav-group-text {
        color: var(--mud-palette-drawer-text) !important;
    }

        .nav-drawer .mud-nav-link:hover {
            color: color-mix(in oklab, var(--mud-palette-drawer-text), #000 15%) !important;
        }

        .nav-drawer .mud-nav-link.mud-nav-link-active {
            color: var(--mud-palette-primary, #95B382) !important;
        }

/* Make the NavMenu header fixed and the rest scrollable */
.nav-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0; /* allow children to shrink for overflow */
}

.nav-menu-header {
    flex: 0 0 auto;
}

.nav-menu-scroll {
    flex: 1 1 auto;
    min-height: 0; /* enable proper overflow on flex child */
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: 12px; /* avoid last item being cut */
}

/* Auto-hide drawer on mouse leave and expand on hover */
.auto-hide-drawer.mud-drawer {
    width: 50px !important;
    --mud-drawer-width: 60px;
    --drawer-logo-collapsed-height: 52px;
    --drawer-logo-expanded-height: 180px;
    transition: width 260ms cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    z-index: 1200;
}

.auto-hide-drawer.mud-drawer:hover {
    width: 220px !important;
    --mud-drawer-width: 220px;
    transition-delay: 1000ms;
}

.auto-hide-drawer.mud-drawer .mud-drawer-content {
    width: 100%;
}

.auto-hide-drawer.mud-drawer .nav-menu-scroll {
    padding-top: 40px;
    transition: padding-top 260ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.auto-hide-drawer.mud-drawer:hover .nav-menu-scroll {
    padding-top: 0;
    transition-delay: 1000ms;
}

.auto-hide-drawer.mud-drawer ~ .mud-main-content {
    margin-left: 60px;
}

.auto-hide-drawer.mud-drawer:not(:hover) {
    transition-delay: 0ms;
}

.auto-hide-drawer.mud-drawer:not(:hover) ~ .mud-main-content {
    transition-delay: 0ms;
}

.auto-hide-drawer.mud-drawer .mud-nav-link {
    min-height: 44px;
    padding: 0 16px;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.auto-hide-drawer.mud-drawer .mud-nav-link .mud-svg-icon,
.auto-hide-drawer.mud-drawer .mud-nav-link .mud-icon-root {
    font-size: 20px;
}

.auto-hide-drawer.mud-drawer .mud-nav-link-text {
    opacity: 0;
    visibility: hidden;
    transition: opacity 120ms ease-in-out;
    white-space: nowrap;
}

.auto-hide-drawer.mud-drawer:hover .mud-nav-link-text {
    opacity: 1;
    visibility: visible;
    transition-delay: 1000ms;
}

.auto-hide-drawer.mud-drawer .nav-menu-header .mud-typography,
.auto-hide-drawer.mud-drawer .nav-menu-header .mud-divider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 120ms ease-in-out;
}

.auto-hide-drawer.mud-drawer:hover .nav-menu-header .mud-typography,
.auto-hide-drawer.mud-drawer:hover .nav-menu-header .mud-divider {
    opacity: 1;
    visibility: visible;
    transition-delay: 1000ms;
}

.auto-hide-drawer.mud-drawer .nav-menu-header .d-flex {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.auto-hide-drawer.mud-drawer:hover .nav-menu-header .d-flex {
    justify-content: flex-start;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    transition-delay: 1000ms;
}

.auto-hide-drawer.mud-drawer .brand-logo {
    height: var(--drawer-logo-collapsed-height);
    transition: height 260ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.auto-hide-drawer.mud-drawer:hover .brand-logo {
    height: var(--drawer-logo-expanded-height);
    transition-delay: 1000ms;
}

/* --------------------------------------------------------- */
/* Subtle text shadow for readability                        */
/* --------------------------------------------------------- */

body,
.mud-typography,
.mud-button-label,
.mud-input-label,
.mud-input-slot input,
.mud-select .mud-input-label,
.mud-nav-link,
.mud-menu-item,
.mud-chip-text,
.mud-breadcrumb-item {
    text-shadow: 0 1px 0 rgba(0,0,0,.1);
}

.mud-typography-h4, .mud-typography-h5 {
    text-shadow: 0 1px 0 rgba(0,0,0,.2);
}

.mud-input-label {
    font-size: 1.2rem !important;
}

.mud-input-root {
    font-size: 1.1rem !important;
}

.material-icons,
.mud-icon-root,
.mud-svg-icon {
    text-shadow: none !important;
}

.mud-input-adornment-icon {
    pointer-events: none;
}

/* --------------------------------------------------------- */
/* Cards & Elevation                                         */
/* --------------------------------------------------------- */

.mud-card {
    transition: box-shadow .2s ease;
}

    .mud-card.mud-paper-outlined,
    .mud-card.mud-elevation-0 {
        box-shadow: 0 2px 8px rgba(0,0,0,.12);
        border-color: rgba(0,0,0,.08);
    }

.mud-theme-dark .mud-card.mud-paper-outlined,
.mud-theme-dark .mud-card.mud-elevation-0 {
    box-shadow: 0 2px 12px rgba(0,0,0,.45);
    border-color: rgba(255,255,255,.08);
}

/* AppBar depth */
.mud-appbar {
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.mud-theme-dark .mud-appbar {
    box-shadow: 0 2px 14px rgba(0,0,0,.45);
}

/* --------------------------------------------------------- */
/* DataGrid & Tables (contrast-perfect, brand-aware)         */
/* --------------------------------------------------------- */

/* Enforce strong, crisp text inside grids */
.mud-data-grid .mud-table-cell,
.mud-data-grid .mud-table-head-cell,
.mud-data-grid .mud-typography {
    font-size: 1rem !important;
    font-weight: 580 !important;
    text-shadow: 0 1px 0 rgba(0,0,0,.05);
}

.grid-zoom-wrap {
    --z: var(--grid-zoom, 1);
    transform: scale(var(--z));
    transform-origin: top left;
    width: calc(100% / var(--z));
    transition: transform 260ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mud-data-grid .column-header {
    font-weight: 800 !important;
    text-shadow: 0 1px 0 rgba(0,0,0,.05);
}

/* Compact rows */
.mud-data-grid .mud-table-cell,
.mud-data-grid .mud-table-head-cell,
.mud-data-grid-cell {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
    padding-left: 4px;
    padding-right: 4px;
}

/* Row borders use theme line vars */
.mud-data-grid .mud-table-cell,
.mud-data-grid .mud-table-head-cell,
.mud-table .mud-table-cell,
.mud-table .mud-table-head-cell {
    border-bottom: 1px solid var(--mud-palette-lines-default, rgba(0,0,0,.12));
}

/* Hover & zebra using theme-provided tokens (set in palette) */
.mud-table .mud-table-row:hover,
.mud-data-grid .mud-table-row:hover {
    background: var(--mud-palette-table-hover, #E9F1E6);
}

/* ensure zebra stripe doesn't override hover: only apply when row is not hovered */
.mud-table .mud-table-row:nth-child(odd):not(:hover),
.mud-data-grid .mud-table-row:nth-child(odd):not(:hover) {
    background: var(--mud-palette-table-striped, #F4F8F3);
}

/* Selected row emphasis */
.mud-table .mud-selected,
.mud-data-grid .mud-selected {
    background: color-mix(in oklab, var(--mud-palette-primary, #95B382), #000 85%) !important;
    color: var(--mud-palette-primary-contrast-text, #0F1A10) !important;
}

/* Dense mode alignment */
.mud-table-dense .mud-table-cell,
.mud-table-dense .mud-table-head-cell {
    vertical-align: middle;
}

/* --------------------------------------------------------- */
/* Forms & Inputs                                            */
/* --------------------------------------------------------- */

/* MudSelect dropdown list text */
.mud-select-popover .mud-list-item,
.mud-select-popover .mud-list-item .mud-typography,
.mud-popover .mud-list-item,
.mud-popover .mud-list-item .mud-typography {
    font-size: 1.1rem;
}

.mud-input-root.mud-input-underline:after {
    border-bottom-color: var(--mud-palette-primary, #95B382);
}

.mud-input-root.mud-input-underline.mud-input-focused:after {
    border-bottom-width: 2px;
}

/* Checkbox / Radio accent to brand */
.mud-checkbox-input:checked + .mud-checkbox-ripple,
.mud-radio-input:checked + .mud-radio-ripple {
    color: var(--mud-palette-primary, #95B382);
}

/* --------------------------------------------------------- */
/* Snackbar (larger, high-contrast)                          */
/* --------------------------------------------------------- */

.mud-snackbar {
    min-width: 380px;
    min-height: 56px;
    padding: 14px 18px;
}

    .mud-snackbar .mud-alert-message {
        font-size: 1.5rem; /* slightly smaller for condensed */
        font-weight: 800 !important;
    }

    .mud-snackbar .mud-alert-title {
        font-size: 1.6rem;
    }

    .mud-snackbar .mud-alert-icon {
        font-size: 26px;
    }

    .mud-snackbar .mud-button-root {
        font-size: .95rem;
    }

/* Color the filled snackbars with brand awareness */
.mud-alert-filled-success {
    background: color-mix(in oklab, #2E7D32, #000 5%);
}

.mud-alert-filled-info {
    background: color-mix(in oklab, #2F80ED, #000 5%);
}

.mud-alert-filled-warning {
    background: color-mix(in oklab, #D9822B, #000 5%);
}

.mud-alert-filled-error {
    background: color-mix(in oklab, #C0392B, #000 5%);
}

/* --------------------------------------------------------- */
/* Utility                                                   */
/* --------------------------------------------------------- */

/* Remove extra focus outlines on icon buttons */
.mud-icon-button:focus {
    outline: none;
}

/* Improve tooltip legibility with condensed font */
.mud-tooltip {
    font-size: .95rem;
    font-weight: 800;
}

/* Compact chip spacing for dense UIs */
.mud-chip {
    margin: 2px;
}


/* Force nav link text to 800 everywhere (standalone and inside groups) */
.nav-menu .mud-nav-link .mud-nav-link-text,
.nav-menu .mud-nav-group .mud-nav-group-items .mud-nav-link .mud-nav-link-text {
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

/* Optional: make group header title also 800 */
.nav-menu .mud-nav-group .mud-nav-group-text {
    text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

/* --------------------------------------------------------- */
/* Dashboard                                                 */
/* --------------------------------------------------------- */

.insight-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

    .insight-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    }

.insight-icon {
    font-size: 3rem;
    opacity: 0.8;
}

.insight-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.navigation-card {
    transition: all 0.2s ease-in-out;
}

    .navigation-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.12) !important;
    }

.pulse-animation {
    animation: pulse 2s infinite;
}

.secondary-insight-card {
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}

    .secondary-insight-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
    }

.secondary-number {
    font-size: 1.8rem;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* --------------------------------------------------------- */
/* Admin Links                                                 */
/* --------------------------------------------------------- */

.admin-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
    overflow: hidden;
    position: relative;
}

    .admin-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.15) !important;
    }

    .admin-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--card-gradient);
        transition: height 0.3s ease;
    }

    .admin-card:hover::before {
        height: 6px;
    }

.admin-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.admin-card:hover .admin-icon {
    opacity: 1;
    transform: scale(1.1);
}

.admin-title {
    font-weight: 600;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.admin-description {
    color: var(--mud-palette-text-secondary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.admin-button {
    transition: all 0.3s ease;
    border-radius: 20px;
    text-transform: none;
    font-weight: 500;
}

    .admin-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

.category-section {
    margin-bottom: 2rem;
}

.category-title {
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.pulse-fade {
    animation: pulseFade 3s ease-in-out infinite;
}

.gradient-1 {
    --card-gradient: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.gradient-2 {
    --card-gradient: linear-gradient(135deg, #74b9ff, #0984e3);
}

.gradient-3 {
    --card-gradient: linear-gradient(135deg, #a29bfe, #6c5ce7);
}

.gradient-4 {
    --card-gradient: linear-gradient(135deg, #fdcb6e, #e17055);
}

.gradient-5 {
    --card-gradient: linear-gradient(135deg, #00b894, #00a085);
}

.gradient-6 {
    --card-gradient: linear-gradient(135deg, #81ecec, #74b9ff);
}

.gradient-7 {
    --card-gradient: linear-gradient(135deg, #fd79a8, #fdcb6e);
}

.gradient-8 {
    --card-gradient: linear-gradient(135deg, #636e72, #2d3436);
}

.gradient-9 {
    --card-gradient: linear-gradient(135deg, #55efc4, #00b894);
}

.gradient-10 {
    --card-gradient: linear-gradient(135deg, #fab1a0, #e17055);
}

.gradient-11 {
    --card-gradient: linear-gradient(135deg, #fd79a8, #a29bfe);
}

@keyframes pulseFade {
    0%, 100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* --------------------------------------------------------- */
/* Global: Elevated MudGrid container (shadow around whole grid) */
/* --------------------------------------------------------- */
.mud-data-grid {
    position: relative; /* anchor the pseudo background */
}

.mud-data-grid::before {
    content: "";
    position: absolute;
    inset: -6px; /* compensate grid’s negative margins/gutters */
    border-radius: 12px;
    background: var(--mud-palette-surface, #fff);
    box-shadow: 0 5px 12px rgba(0,0,0,.12);
    z-index: 0;
    pointer-events: none; /* don’t block clicks */
}

.mud-data-grid:hover::before,
.mud-data-grid:focus-within::before {
        box-shadow: 0 10px 20px rgba(0,0,0,.15);
        transform: translateY(-1px);
    }

.mud-theme-dark .mud-grid::before {
    background: color-mix(in oklab, var(--mud-palette-surface, #121212), #fff 4%);
    box-shadow: 0 5px 12px rgba(0,0,0,.45);
}

/* Ensure grid contents render above the decorative layer */
.mud-data-grid > * {
    position: relative;
    z-index: 1;
}

/* Opt-out if needed: Class="no-grid-shadow" on MudGrid */
.mud-data-grid.no-grid-shadow::before {
    display: none;
}

/* --------------------------------------------------------- */
/* Search TextField: 3D container look                       */
/* --------------------------------------------------------- */
.search-3d {
    position: relative; /* top-level MudTextField element */
    z-index: 0;
}

    .search-3d::before {
        content: "";
        position: absolute;
        inset: -2px; /* create a soft container around the field */
        border-radius: 12px;
        background: var(--mud-palette-surface, #fff);
        box-shadow: 0 4px 8px rgba(0,0,0,.12);
        z-index: -1;
        pointer-events: none;
        transition: box-shadow .2s ease, transform .2s ease;
    }

    .search-3d:hover::before,
    .search-3d:focus-within::before {
        box-shadow: 0 12px 28px rgba(0,0,0,.18);
        transform: translateY(-1px);
    }

.mud-theme-dark .search-3d::before {
    background: color-mix(in oklab, var(--mud-palette-surface, #121212), #fff 4%);
    box-shadow: 0 10px 24px rgba(0,0,0,.5);
}

/* Limits the actual column width */
.has-prod-col {
    max-width: 60px !important; /* tweak as needed */
}

/* Limits the actual column width */
.has-prod-col-80 {
    max-width: 80px !important; /* tweak as needed */
}

/* Limits the actual column width */
.prod-col {
    max-width: 100px !important; /* tweak as needed */
}

.center-flex {
    text-align: center;
}

/* Visual thumb */
.mud-switch .mud-switch-base {
    translate: 3px 4px; /* x y */
}