/* _content/LagerPilot/Components/Article/ArticleForm.razor.rz.scp.css */
.identifier-group[b-uwdpg4n2d9] {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
    margin: 0 0 10px 0;
}

.supplier-group[b-uwdpg4n2d9] {
    display: grid;
    grid-template-columns: 1fr auto 100px auto;
    grid-gap: 10px;
    margin: 0 0 10px 0;
}
/* _content/LagerPilot/Components/Article/ArticlePicker.razor.rz.scp.css */
/* ArticlePicker styles */
.article-list[b-uleysn1k6o], .selected-articles[b-uleysn1k6o] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.article-card[b-uleysn1k6o], .selected-article-card[b-uleysn1k6o] {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background: #fafafa;
    cursor: pointer;
    min-width: 220px;
    transition: box-shadow 0.2s;
}
.article-card:hover[b-uleysn1k6o], .selected-article-card:hover[b-uleysn1k6o] {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #f0f8ff;
}
.badge[b-uleysn1k6o] {
    margin-top: 0.5rem;
    display: inline-block;
}
/* _content/LagerPilot/Components/Article/ArticlePosition.razor.rz.scp.css */
/* Styles for ArticlePosition component */
.position-list[b-wv0wxh37oq] {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 12px;
    align-items: start;
}
.position-list dt[b-wv0wxh37oq] {
    /* font-weight: 600; */
    margin: 0;
    /* padding: 4px 0; */
    color: var(--muted, #444);
}
.position-list dd[b-wv0wxh37oq] {
    margin: 0;
    /* padding: 4px 0; */
    /* color: var(--text, #111); */
}
.position-list dt[b-wv0wxh37oq],
.position-list dd[b-wv0wxh37oq] {
    padding-left: 0;
}

.warning[b-wv0wxh37oq] {
    display: block;
    margin-top: 8px;
    color: var(--warning, #b45f06);
    font-size: 0.9rem;
}

span[b-wv0wxh37oq] {
    color: var(--muted, #666);
}
/* _content/LagerPilot/Components/Dashboard/GlobalSearch.razor.rz.scp.css */
.search[b-xf5dpfahgk] {
    position: relative;
    display: grid;
}

.search-backdrop[b-xf5dpfahgk] {
    position: absolute;
    top: 0; left: 0;
    z-index: -2;
    height: 100vh;
    width: 100vw;
}

[b-xf5dpfahgk] input {
    background: white;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 36px 10px 12px; /* space for right icon */
    border: 1px solid rgba(0,0,0,0.06);
    outline: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: box-shadow 0.12s ease, border-color 0.12s ease;
    font-weight: 600;
}

    input:hover[b-xf5dpfahgk] {
        box-shadow: var(--box-shadow-hover);
    }

    input:focus[b-xf5dpfahgk] {
        color: black;
        border-color: rgba(59,130,246,0.8); 
        box-shadow: 0 6px 18px rgba(59,130,246,0.06);
    }

[b-xf5dpfahgk] i {
    font-size: 1.2rem;
}

.searchicon[b-xf5dpfahgk] {
    position: absolute;
    right: 15px;
    top: 10px;
    bottom: 0;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    color: rgba(102,102,102,0.9);
}

/* Search result list items styling (Table's ListItemTemplate renders these) */
.list-item[b-xf5dpfahgk] {
    display: flex;
    width: 100%;
    flex-direction: column;
    padding: 8px 12px;
    /* border-bottom: 1px solid rgba(0,0,0,0.04); */
    background: transparent;
}

.list-item:last-child[b-xf5dpfahgk] {
    border-bottom: none;
}

.list-item .name[b-xf5dpfahgk] {
    font-weight: 600;
    color: var(--text-color, #ffffff);
    font-size: 0.95rem;
}

.list-item .meta[b-xf5dpfahgk] {
    font-size: 0.78rem;
    color: rgba(218, 218, 218, 0.7);
}

/* Clickable affordance and keyboard focus */
.list-item.clickable[b-xf5dpfahgk] {
    cursor: pointer;
    transition: background-color .12s ease, transform .06s ease;
}

.list-item.clickable:hover[b-xf5dpfahgk],
.list-item.clickable:focus[b-xf5dpfahgk] {
    background-color: rgba(59,130,246,0.06);
}

.list-item.clickable:active[b-xf5dpfahgk] {
    transform: translateY(1px);
}

.list-item.clickable:focus[b-xf5dpfahgk] {
    outline: 2px solid rgba(59,130,246,0.12);
    outline-offset: 2px;
}

@media (max-width: 640px) {
    .search[b-xf5dpfahgk] { max-width: 100%; }
}

/* Results container open/close animation */
.results[b-xf5dpfahgk] {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height .42s cubic-bezier(.2,.8,.2,1), opacity .16s ease;
    opacity: 0;
}

.results.open[b-xf5dpfahgk] {
    max-height: 100dvh;
    opacity: 1;
}

/* slide-in for the inner list element */
.results > .list[b-xf5dpfahgk] {
    transform: translateY(-6px);
    transition: transform .22s cubic-bezier(.2,.8,.2,1);
}

.results.open > .list[b-xf5dpfahgk] {
    transform: translateY(0);
}
/* _content/LagerPilot/Components/Dashboard/Tile.razor.rz.scp.css */
.tile[b-vhh2zi87m7] {
    aspect-ratio: 1/1;
    width: 100%;
}

[b-vhh2zi87m7] i {
    font-size: 4rem;
    margin: 0;
    color: white;
    transition: all 0.3s;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

p[b-vhh2zi87m7] {
    font-size: 1rem;
    text-align: center;
}

.icon[b-vhh2zi87m7] {
    background: var(--primary-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icon[b-vhh2zi87m7]::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: '';
        background: linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 0;
    }

.text[b-vhh2zi87m7] {
    padding: 0.3rem;
}

[b-vhh2zi87m7] a {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    aspect-ratio: 1 / 1;
    background: white;
    overflow: auto;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    user-select: none;
}
    [b-vhh2zi87m7] a:hover {
        box-shadow: var(--box-shadow-hover);
        transform: scale(1.03);
    }

    [b-vhh2zi87m7] a:hover ::deep i {
        transform: scale(1.1, 1.1)
    }
/* _content/LagerPilot/Components/Layout/MainLayout.razor.rz.scp.css */
.app[b-iazeonq2cr] {
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: auto;
    height: 100%;
    width: 100%;
}

.main[b-iazeonq2cr] {
    padding: 0;
    overflow: auto;
    display: grid;
    position: relative;
}

@media (max-width:600px) {
    .mobile-hidden[b-iazeonq2cr] {
        display: none;
    }
}

#blazor-error-ui[b-iazeonq2cr] {
    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;
}

    #blazor-error-ui .dismiss[b-iazeonq2cr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/LagerPilot/Components/MainMenu/Menu.razor.rz.scp.css */
menu[b-xng1eaw4hx] {
    margin: 0;
    padding: 0;
    overflow: auto;
}

ul[b-xng1eaw4hx] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}

li[b-xng1eaw4hx] {
    width: 100%;
    display: contents;
}
/* _content/LagerPilot/Components/MainMenu/MenuItem.razor.rz.scp.css */
[b-nslciytje4] i {
    font-size: 1rem;
}

.text[b-nslciytje4] {
    text-align: left;
    display: flex;
    align-items: center;
}

.icon[b-nslciytje4] {
    display: flex;
    align-items: center;
}

p[b-nslciytje4] {
    font-size: 1rem;
}

button[b-nslciytje4] {
    display: grid;
    grid-template-columns: 30px 1fr;
    transition: all 0.3s;
    border: 1px transparent solid;
    cursor: pointer;
}

button:hover[b-nslciytje4] {

}

/* _content/LagerPilot/Components/Pages/Articles.razor.rz.scp.css */
main[b-tix2bmo1j6] {
    display: grid;
    height: 100%;
    grid-template-rows: auto auto 1fr;
    overflow: auto;
}

h1[b-tix2bmo1j6] {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 2rem;
}
/* _content/LagerPilot/Components/Pages/Home.razor.rz.scp.css */
h1[b-p8qo8y2qaw] {
    margin: -10px 0 20px 0;
    padding: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #0f2f51;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
    user-select: none;
}

ul.tiles[b-p8qo8y2qaw] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

    ul.tiles li[b-p8qo8y2qaw] {
        display: contents;
    }

section.head[b-p8qo8y2qaw] {
    flex-direction: column;
    background: #0f9afa;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 0;
    padding: 30px;
}

.filterbg[b-p8qo8y2qaw] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
}

@media (max-width: 600px) {
    ul.tiles[b-p8qo8y2qaw] {
        grid-gap: 10px;
    }
}
/* _content/LagerPilot/Components/Pages/Scan.razor.rz.scp.css */
.scan-page-container[b-p0c3wt4ze8] {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.scan-card[b-p0c3wt4ze8] {
  width: 100%;
  max-width: 600px;
  padding: 0;
  overflow: hidden;
}

.scanner-wrapper[b-p0c3wt4ze8] {
  position: relative;
  aspect-ratio: 16/9;
  background: #ffffff;
}

/* Overlay that sits on top of the camera video */
.scan-overlay[b-p0c3wt4ze8] {
  position: absolute;
  inset: 0;
  pointer-events: none; /* allow clicks to pass to underlying video/camera */
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-guide[b-p0c3wt4ze8] {
  /* make the guide responsive: clamp between small and large sizes */
  --guide-size: clamp(120px, 40vmin, 350px);
  width: var(--guide-size);
  height: var(--guide-size);
  position: relative;
}

/* Corner L-shapes */
.scan-guide .corner[b-p0c3wt4ze8] {
  position: absolute;
  /* corner length scales with guide size */
  --corner-size: clamp(18px, calc(var(--guide-size) * 0.085), 36px);
  width: var(--corner-size);
  height: var(--corner-size);
  box-sizing: border-box;
}

/* Success state: corners turn green and play a small hover animation */
.scan-guide.success[b-p0c3wt4ze8] {
  animation: corner-hover-b-p0c3wt4ze8 800ms ease-in-out;
}
.scan-guide.success .corner[b-p0c3wt4ze8] {
  animation: corner-hover-b-p0c3wt4ze8 800ms ease-in-out;
  border-color: rgba(76, 175, 80, 0.95); /* green */
}

@keyframes corner-hover-b-p0c3wt4ze8 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
    border-color: rgba(76, 175, 80, 1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* border thickness adapts as well */
.scan-guide .corner.top-left[b-p0c3wt4ze8] {
  left: 0;
  top: 0;
  border-left: clamp(2px, calc(var(--corner-size) * 0.11), 4px) solid rgba(255,255,255,0.95);
  border-top: clamp(2px, calc(var(--corner-size) * 0.11), 4px) solid rgba(255,255,255,0.95);
}
.scan-guide .corner.top-right[b-p0c3wt4ze8] {
  right: 0;
  top: 0;
  border-right: clamp(2px, calc(var(--corner-size) * 0.11), 4px) solid rgba(255,255,255,0.95);
  border-top: clamp(2px, calc(var(--corner-size) * 0.11), 4px) solid rgba(255,255,255,0.95);
}
.scan-guide .corner.bottom-left[b-p0c3wt4ze8] {
  left: 0;
  bottom: 0;
  border-left: clamp(2px, calc(var(--corner-size) * 0.11), 4px) solid rgba(255,255,255,0.95);
  border-bottom: clamp(2px, calc(var(--corner-size) * 0.11), 4px) solid rgba(255,255,255,0.95);
}
.scan-guide .corner.bottom-right[b-p0c3wt4ze8] {
  right: 0;
  bottom: 0;
  border-right: clamp(2px, calc(var(--corner-size) * 0.11), 4px) solid rgba(255,255,255,0.95);
  border-bottom: clamp(2px, calc(var(--corner-size) * 0.11), 4px) solid rgba(255,255,255,0.95);
}
.scan-guide.has-result .corner[b-p0c3wt4ze8] {
  border-color: rgba(76, 175, 80, 0.95); /* green */ 
}


/* subtle center crosshair */
.scan-guide[b-p0c3wt4ze8]::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  transform: translate(-50%, -50%);
}

.scan-result[b-p0c3wt4ze8] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  gap: 12px;
}

.result-text[b-p0c3wt4ze8] {
  font-size: 0.95rem;
  color: var(--text-muted);
  word-break: break-all;
  flex: 1 1 auto;
}

.result-actions[b-p0c3wt4ze8] {
  display: flex;
  gap: 8px;
}

.scan-hint[b-p0c3wt4ze8] {
  padding: 12px 16px;
  color: var(--text-muted);
}

.button-link[b-p0c3wt4ze8] {
  display: inline-block;
}
/* _content/LagerPilot/Components/Pages/Warehouses.razor.rz.scp.css */
/* Warehouse Page Styles */
.article-table-container[b-sl9tb8sql1] {
  max-width: 100vw;
}

.warehouseselector[b-sl9tb8sql1] {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.warehouseselector select[b-sl9tb8sql1] {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid #cfd8dc;
  background: #f5f7fa;
  font-size: 1rem;
  color: #333;
  min-width: 200px;
}
.warehouseselector .searchicon[b-sl9tb8sql1] {
  color: #0f9afa;
  font-size: 1.2rem;
}
/* _content/LagerPilot/Components/Shared/ActionGroup.razor.rz.scp.css */
.action-group[b-mnthle6bfd] {
    margin: 0 0 10px 0;
    margin-top: 0;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: var(--border-radius);
    background-color: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}

.action-group[b-mnthle6bfd]  > *:not(:last-child) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.action-group[b-mnthle6bfd]  > *:not(:first-child) {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
/* _content/LagerPilot/Components/Shared/Button.razor.rz.scp.css */
button[b-dn06q8zvjn] {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0.625rem 1rem;
    gap: 0.625rem;
    margin: 0;
    border-radius: 0.375rem;
    background: #f9fafb; 
    border: 1px solid #e5e7eb;
    font-size: 0.875rem;
}
    button:disabled[b-dn06q8zvjn] {
        opacity: 0.5;
        cursor: unset;
    }

    button:hover:enabled[b-dn06q8zvjn] {
        box-shadow: var(--box-shadow);
    }

    button:focus[b-dn06q8zvjn] {
        outline: none;
    }

    button.danger[b-dn06q8zvjn] {
        color: var(--danger);
    }
/* _content/LagerPilot/Components/Shared/Card.razor.rz.scp.css */
h2[b-kylcj2buj0] {
    font-size: 1.25rem;
    margin: 0;
    margin-left: var(--border-radius);
    margin-bottom: .5rem;
}
.card[b-kylcj2buj0] {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 15px;
    padding: 1.25rem 1.25rem 1rem 1.25rem;
    transition: box-shadow 0.2s;
}
.card:has(.link-icon)[b-kylcj2buj0] {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem;
}
.card:hover[b-kylcj2buj0] {
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
}
.card.clickable[b-kylcj2buj0] {
    cursor: pointer;
}
.card-content[b-kylcj2buj0] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}
@media (max-width: 600px) {
  .card[b-kylcj2buj0] {
    padding: 0.85rem 0.5rem 0.7rem 0.5rem;
    font-size: 0.98rem;
  }
}
.link-icon[b-kylcj2buj0] {
    width: 1rem;
    height: 1rem;
    color: #6b7280; /* text-gray-500 */
}
/* _content/LagerPilot/Components/Shared/Chip.razor.rz.scp.css */

.chip[b-s0sts1ior6] {
    display: flex;
    /* align-items: center; */
    width: fit-content;
    background: #f0f4fa;
    color: var(--primary-color);
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    /* border: 1px solid #e5e5e5; */
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.chip.clickable[b-s0sts1ior6] {
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}
.chip.clickable:hover[b-s0sts1ior6] {
    filter: brightness(0.95);
}

.chip-link-icon[b-s0sts1ior6] {
    width: 1rem;
    height: 1rem;
    color: #6b7280d0;
}
/* _content/LagerPilot/Components/Shared/ConfirmDialog.razor.rz.scp.css */
h3[b-a2vh1ybq2i] {
    margin: 0;
    font-weight: bold;
    font-size: 1.5rem;
}

p[b-a2vh1ybq2i] {
    margin: 20px 0 25px 0;
}

.buttons[b-a2vh1ybq2i] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}
/* _content/LagerPilot/Components/Shared/DataCard.razor.rz.scp.css */
.data-card-actions[b-efzsxbw3gi] {
    overflow: auto;
    display: flex;
    display: flex;
    margin: 0 0 10px 0;
    padding: 0;
    border-radius: var(--border-radius);
    background: #f9f9f9;
    overflow: hidden;
    float: right;
    border: 1px solid #ddd;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgb(221, 221, 221);
}


.data-card-actions[b-efzsxbw3gi]  button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

    .data-card-actions[b-efzsxbw3gi]  button:hover {
        background: rgba(0, 0, 0, 0.1);
    }

    .data-card-actions[b-efzsxbw3gi]  > * {
        border-right: 1px solid #ddd !important;
    }

    .data-card-actions[b-efzsxbw3gi] :last-child {
        border-right: none;
    }



.data-card-grid[b-efzsxbw3gi] {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem 1rem;
  font-size: 1rem;
}
.data-card-label[b-efzsxbw3gi] {
  font-weight: 600;
  color: #555;
  /* align-self: center; */
  word-break: break-word;
  hyphens: auto;
}
.data-card-value[b-efzsxbw3gi] {
  color: #222;
  align-self: center;
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 600px) {
  .data-card-grid[b-efzsxbw3gi] {
    grid-template-columns: 1fr;
    padding: 1rem;
    font-size: 0.98rem;
  }
  .data-card-label[b-efzsxbw3gi] {
    margin-top: 0.5rem;
    color: #888;
  }
  .data-card-value[b-efzsxbw3gi] {
    margin-bottom: 0.5rem;
  }
}

/* Lists inside table cells (chip-like identifiers) */
[b-efzsxbw3gi] .data-card-value > ul,
[b-efzsxbw3gi] .data-card-label > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

[b-efzsxbw3gi] .data-card-value > ul li,
[b-efzsxbw3gi] .data-card-label > ul li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f3f3;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.9rem;
    /* border: 1px solid #e5e5e5; */
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
}

[b-efzsxbw3gi] .data-card-value > ul li:hover,
[b-efzsxbw3gi] .data-card-label > ul li:hover {
    background: #efefef;
}

[b-efzsxbw3gi] .data-card-value > ul li  code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.75rem; /* text-xs */
    color: #374151; /* text-gray-700 */
    padding: 0.125rem 0.25rem; /* px-1 py-0.5 */
    border-radius: 0.25rem; /* rounded */
    border: 1px solid #e8e8e8;
    background: #f7f7f7;
}
/* _content/LagerPilot/Components/Shared/DebouncedInput.razor.rz.scp.css */
input[b-j4shlb8urh] {
    padding: 0.5rem 0.75rem;
}

input:focus[b-j4shlb8urh] {
    outline: none;
}
/* _content/LagerPilot/Components/Shared/Dialog.razor.rz.scp.css */
.modal-backdrop[b-lfskydriqo] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: dialog-fadein-b-lfskydriqo 0.2s;
}

.modal[b-lfskydriqo] {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 1001;
    overflow-y: auto;
    animation: dialog-popin-b-lfskydriqo 0.25s;
    position: relative;
    max-width: 85vw;
    max-height: 85dvh;
}

@media (min-width: var(--small-screen))
{
    .modal[b-lfskydriqo] {
        max-width: 80vw;
        max-height: 85dvh;
    }
}

@keyframes dialog-fadein-b-lfskydriqo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes dialog-popin-b-lfskydriqo {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    80% {
        transform: scale(1.03);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* _content/LagerPilot/Components/Shared/DialogInstance.razor.rz.scp.css */
/* DialogCard.razor.css */
.modal-backdrop[b-01bk0y4fgb] {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: dialog-fadein-b-01bk0y4fgb 0.2s;
}
.modal[b-01bk0y4fgb] {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2rem 2.5rem;
    min-width: 100px;
    max-width: 90vw;
    max-height: 88vh;
    overflow-y: auto;
    animation: dialog-popin-b-01bk0y4fgb 0.25s;
    position: relative;
    width: 40vw;
}
@keyframes dialog-fadein-b-01bk0y4fgb {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes dialog-popin-b-01bk0y4fgb {
  0% { transform: scale(0.95); opacity: 0.7; }
  80% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@media (max-width: 600px) {
  .dialog-modal-card[b-01bk0y4fgb] {
    padding: 1rem 0.5rem;
    min-width: 0;
  }
}
/* _content/LagerPilot/Components/Shared/FooterMenu.razor.rz.scp.css */
footer[b-78wku28riy] {
    background: rgba(0, 0, 0, 0.1);
}

ul[b-78wku28riy] {
    list-style: none;
    display: grid;
    margin: 0;
    padding: 5px;
    gap: 5px;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
}

li[b-78wku28riy] {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

[b-78wku28riy] i {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

p[b-78wku28riy] {
    margin: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
}

[b-78wku28riy] a {
    width: 100%;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px;
    gap: 5px;
    flex-direction: column;
    background: white;
    margin: 0;
    border-radius: var(--border-radius);
    text-decoration: none;
}

    [b-78wku28riy] a:hover {
        background: rgba(0, 0, 0, 0.1);
    }
/* _content/LagerPilot/Components/Shared/FormButton.razor.rz.scp.css */
button[b-usvlmjivkr] {
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 10px 15px;
    gap: 10px;
    flex-direction: row;
    margin: 0;
    border-radius: var(--border-radius);
    background: #f9f9f9;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}
button:disabled[b-usvlmjivkr] {
    opacity: 0.5;
    cursor: unset;
}

button:hover[b-usvlmjivkr] {
    box-shadow: var(--box-shadow);
}

.warning button[b-usvlmjivkr] {
    color: var(--accent-red);
}

.primary button[b-usvlmjivkr] {
    background: var(--primary-color);
    color: white;
}
/* _content/LagerPilot/Components/Shared/FormNameValue.razor.rz.scp.css */
.namevalue[b-l3jvznzxyp] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 10px 0;
}

[b-l3jvznzxyp] input, [b-l3jvznzxyp] select {
    padding: 10px 10px;
    font-weight: normal;
    font-size: 0.9rem;
    outline: none;
    border-radius: var(--border-radius);
    background: #f9f9f9;
    border: 1px solid #ddd;
    transition: all 0.3s;
    box-sizing: border-box;
}

    [b-l3jvznzxyp] input:focus, [b-l3jvznzxyp] select:focus {
        border-color: #0078d7;
        box-shadow: 0 0 5px rgba(0, 120, 215, 0.3);
    }

[b-l3jvznzxyp] label {
    font-size: 1rem;
}
/* _content/LagerPilot/Components/Shared/Form/ActionableInput.razor.rz.scp.css */
.actionable-input[b-gnemb6sms4] {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 4px;
    align-items: stretch; /* ensure grid items (content + actions) stretch to same height */
}

.content[b-gnemb6sms4] {
    width: 100%;
    display: flex;
    min-width: 0; /* allow shrinking inside flex */
    box-sizing: border-box;
}
.content[b-gnemb6sms4] >  * {
    flex: 1 1 auto;
    min-width: 0; /* allow shrinking inside flex */
    box-sizing: border-box;
}

.actions[b-gnemb6sms4] {
    height: 100%;
    display: flex;
    flex-direction: column; /* stack buttons vertically */
    align-items: stretch; /* stretch children horizontally to fill actions column */
    gap: 4px;
}

.actions > *[b-gnemb6sms4] {
    /* Make each direct child (usually FormButton or Button) grow equally to fill the actions column */
    flex: 1 1 0;
    display: flex; /* allow inner button to stretch inside */
}

.actions[b-gnemb6sms4]  button {
    /* Ensure the native button fills its parent container */
    width: 100%;
    height: auto;
    flex-grow: 1;
}
/* _content/LagerPilot/Components/Shared/Form/BaseForm.razor.rz.scp.css */
.base-form[b-8l6m9w9sxd] {
  width: 100%;
  /* use flex column so header/body/footer can be laid out vertically */
  flex-direction: column;
  /* allow the form to take available height of its container when needed */
  max-height: 85dvh;
  overflow: auto;
}

.base-form .header[b-8l6m9w9sxd] {
  padding: 0 30px;
  margin: 0;
  padding-top: 20px;
  position: sticky;
  top: 0;
  background: inherit; /* allow parent background to show */
  z-index: 2;
  background-color: #fff;
}
  
.base-form .title[b-8l6m9w9sxd] {
  margin-bottom: .5rem;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.base-form .body[b-8l6m9w9sxd] {
  padding: 0 30px;
  /* allow body to grow and become scrollable when content overflows */
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 0 0 1rem 0;
  flex: 1 1 auto;
  overflow: auto;
}
.base-form .validation-summary[b-8l6m9w9sxd] {
  margin: 0 0 1rem 0;
}
.base-form .footer[b-8l6m9w9sxd] {
  padding: 0 30px;
  display: flex;
  gap: .5rem;
  padding-top: 0.5rem;
  /* keep the footer visible when body scrolls */
  position: sticky;
  bottom: 0;
  background: inherit;
  z-index: 2;
  background-color: #fff;
  padding-bottom: 20px;
  /* shadow will be applied via scroll-linked animation when supported */
}

/* Fallback classes toggled by JS when the scrollable container is the parent
   (or when scroll-linked animations aren't available). */
.base-form.has-scroll-top .header[b-8l6m9w9sxd] {
  box-shadow: 0 4px 8px -4px rgba(0,0,0,0.10);
}

.base-form.has-scroll-bottom .footer[b-8l6m9w9sxd] {
  box-shadow: 0 -4px 8px -4px rgba(0,0,0,0.10);
}
.base-form .footer button[b-8l6m9w9sxd] {
  min-width: 90px;
}

/* new rows inside footer */
.base-form .validation-row[b-8l6m9w9sxd] {
  width: 100%;
  margin-bottom: .5rem;
}

.base-form .validation-row .validation-summary[b-8l6m9w9sxd],
.base-form .validation-row .validation-message[b-8l6m9w9sxd] {
  color: #c92a2a; /* red color for validation */
  margin: 0;
}

.base-form .button-row[b-8l6m9w9sxd] {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end; /* put buttons to the right by default */
}

[b-8l6m9w9sxd] label {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: .5rem;
}

[b-8l6m9w9sxd] input, [b-8l6m9w9sxd] textarea, [b-8l6m9w9sxd] select {    
    padding: 10px 10px;
    font-weight: normal;
    font-size: 0.9rem;
    outline: none;
    border-radius: var(--border-radius);
    background: #f9f9f9;
    border: 1px solid #ddd;
    transition: all 0.3s;
    box-sizing: border-box;
}
    [b-8l6m9w9sxd] input:focus, [b-8l6m9w9sxd] textarea:focus, [b-8l6m9w9sxd] select:focus {
        border-color: #0078d7;
        box-shadow: 0 0 5px rgba(0, 120, 215, 0.3);
    }
[b-8l6m9w9sxd] textarea {
    resize: vertical;
}

/* toggle switch style for checkboxes */
[b-8l6m9w9sxd] input[type=checkbox] {
  /* reset native appearance */
  -webkit-appearance: none;
  appearance: none;

  display: inline-block;
  width: 40px;
  height: 24px;
  margin: 0;
  position: relative;
  vertical-align: middle;
  cursor: pointer;

  background: #ccc;
  border-radius: 24px;
  border: none;
  transition: background 0.2s ease;
  box-sizing: border-box;
}

  [b-8l6m9w9sxd] input[type=checkbox]::before {
    /* knob */
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  }

  [b-8l6m9w9sxd] input[type=checkbox]:checked {
    background: var(--primary-color, #0078d7);
  }

  [b-8l6m9w9sxd] input[type=checkbox]:checked::before {
    transform: translateX(16px);
  }

  [b-8l6m9w9sxd] input[type=checkbox]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(0,120,215,0.12);
  }

  [b-8l6m9w9sxd] input[type=checkbox]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }


/* input with trailing button (alias entries) */
[b-8l6m9w9sxd] .input-with-button {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 4px;
}

[b-8l6m9w9sxd] .input-with-button input {
    flex: 1 1 auto;
    min-width: 0; /* allow shrinking inside flex */
    box-sizing: border-box;
}

[b-8l6m9w9sxd] .input-with-button button {
    height: auto; /* let flex determine height */
}

[b-8l6m9w9sxd] fieldset {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
}

[b-8l6m9w9sxd] fieldset > * {
    flex-grow: 1;
}

[b-8l6m9w9sxd] legend {
    font-size: 1rem;
}

/* Scroll indicator using the experimental scroll-linked animations API.
   We define a scroll-timeline attached to the form's scrollable body and
   animate the header/footer box-shadow based on that timeline.
   Browsers that don't support scroll-linked animations will ignore these
   rules and simply show no animated shadow. */

@keyframes scroll-indicator-b-8l6m9w9sxd {
  from { box-shadow: 0; }
  15%  { box-shadow: 0 14px 8px -4px rgba(0,0,0,0.10); }
  to   { box-shadow: 0 14px 8px -4px rgba(0,0,0,0.10); }
}
@keyframes scroll-indicator-bottom-b-8l6m9w9sxd {
  from { box-shadow: 0 -14px 8px -4px rgba(0,0,0,0.10); }
  85%  { box-shadow: 0 -14px 8px -4px rgba(0,0,0,0.10); }
  to   { box-shadow: 0; }
}

/* Apply the animation to header/footer only when the browser supports
   the `animation-timeline` property. Set the scroll-timeline name on the
   scrollable body so implementations that expect a named timeline can
   pick it up. This avoids using the unknown `@scroll-timeline` at-rule. */
@supports (animation-timeline: auto) {
  .base-form[b-8l6m9w9sxd] {
    /* name the body's scroll timeline so animations can reference it */
    scroll-timeline-name: --baseform-scroll;
    scroll-timeline-axis: block;
  }

  .base-form .header[b-8l6m9w9sxd] {
    animation: scroll-indicator-b-8l6m9w9sxd 1s linear both;
    animation-timeline: --baseform-scroll;
    -webkit-animation-timeline: --baseform-scroll;
  }

  .base-form .footer[b-8l6m9w9sxd] {
    animation: scroll-indicator-bottom-b-8l6m9w9sxd 1s linear both;
    animation-timeline: --baseform-scroll;
    -webkit-animation-timeline: --baseform-scroll;
  }
}
/* _content/LagerPilot/Components/Shared/HeaderTile.razor.rz.scp.css */
.icon[b-cyodk4zptu]  i {
    font-size: 2rem;
    margin: 0;
    color: white;
    transition: all 0.3s;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

h2[b-cyodk4zptu] {
    font-size: 1.5rem;
    padding: 0 0 0 20px;
    margin: 0;
}

.text[b-cyodk4zptu] {
    display: flex;
    align-items: center;
}

.icon[b-cyodk4zptu] {
    background: var(--primary-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .icon[b-cyodk4zptu]::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: '';
        background: linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
        z-index: 0;
    }

.header-tile[b-cyodk4zptu] {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    border: none;
    border-radius: var(--border-radius);
    background: white;
    overflow: auto;
    transition: all 0.3s;
    text-decoration: none;
    user-select: none;
    min-height: 60px;
}

.child-content[b-cyodk4zptu] {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.child-content[b-cyodk4zptu]  button {
    color: var(--primary-color);
}

@media (max-width:400px) {
    .header-tile[b-cyodk4zptu] {
        margin: -10px;
        border-radius: 0;
        box-shadow: var(--box-shadow);
        position: sticky;
        top: -10px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
    }
}
/* _content/LagerPilot/Components/Shared/InputGroup.razor.rz.scp.css */
.input-group[b-38ee28mlzg] {
    display: flex;
    gap: 8px;
    align-items: stretch; /* make children stretch vertically */
    margin: 0 0 10px 0;
}

.input-with-button input[b-38ee28mlzg],
.input-with-button .form-control[b-38ee28mlzg],
.input-with-button input[type="text"][b-38ee28mlzg],
.input-with-button input[type="number"][b-38ee28mlzg] {
    flex: 1 1 auto;
    min-width: 0; /* allow shrinking inside flex */
}

.input-with-button button[b-38ee28mlzg],
.input-with-button .btn[b-38ee28mlzg] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    height: auto; /* let flex determine height */
    border-radius: var(--border-radius);
}

/* ensure button inherits input-like height by matching input's padding via line-height if needed */
.input-with-button input[b-38ee28mlzg],
.input-with-button select[b-38ee28mlzg] {
    box-sizing: border-box;
}
/* _content/LagerPilot/Components/Shared/MainHeader.razor.rz.scp.css */
h1[b-74z7nf55h1] {
    margin: 0px 0 0 0;
    padding: 0;
    font-size: 2em;
    font-weight: 600;
    color: white;
    user-select: none;
}
.main-header[b-74z7nf55h1] {
    flex-direction: column;
    background: rgb(13, 108, 172);
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 0;
    padding: 20px 30px 30px 30px;
}

.main-row[b-74z7nf55h1] {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    align-items: center;
}

.main-header-left[b-74z7nf55h1] {
    margin: 0;
    display: flex;
    flex-grow: 0;
}
.main-header-center[b-74z7nf55h1] {
    margin: 0;
    display: flex;
    flex-grow: 1;
}
.main-header-right[b-74z7nf55h1] {
    display: flex;
}

.filterbg[b-74z7nf55h1] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    box-shadow: 0px -10px 10px inset rgba(0, 0, 0, 0.1);
}

img[b-74z7nf55h1] {
    height: 40px;
    background: white;
    border-radius: var(--border-radius);
    padding: 5px 8px 10px 8px;
    box-shadow: var(--box-shadow);
}

.search-container[b-74z7nf55h1] {
    margin-top: 20px;
}

[b-74z7nf55h1] a {
    text-decoration: none;
}

@media (max-width:600px) {
    .main-header[b-74z7nf55h1] {
        padding: 10px;
    }

    .search-container[b-74z7nf55h1] {
        margin-top: 10px;
    }
}
/* _content/LagerPilot/Components/Shared/PackingListIcon.razor.rz.scp.css */
/* PackingListIcon.razor.css */
.packinglist-icon[b-ogd5hscort] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f03e3e;
  color: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 0.3rem 0.6rem 0.3rem .6rem;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.packinglist-icon:hover[b-ogd5hscort] {
  background: #c92a2a;
}
.icon-wrapper[b-ogd5hscort] {
  position: relative;
  display: inline-block;
}
.packinglist-icon i[b-ogd5hscort] {
    margin-right: 0;
    font-size: 1.8em;
    position: relative;
    z-index: 1;
}
.packinglist-count[b-ogd5hscort] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%); /* Center exactly */
    background: transparent;
    color: #f03e3e;
    font-size: 1em;
    font-weight: 700;
    min-width: 1.2em;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    pointer-events: none;
    z-index: 2;
    line-height: 1;
    text-align: center;
}
@media (max-width: 600px) {
  .packinglist-icon[b-ogd5hscort] {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem 0.4rem 0.7rem;
  }
  .packinglist-count[b-ogd5hscort] {
    font-size: 0.95rem;
    min-width: 1.1em;
  }
}
/* _content/LagerPilot/Components/Shared/SearchableDropdown.razor.rz.scp.css */
.searchable-dropdown[b-9w7a0otxc3] {
    position: relative;
}

    .searchable-dropdown input[b-9w7a0otxc3] {
        width: 100%;
    }

    .searchable-dropdown .dropdown[b-9w7a0otxc3] {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 2px;
        padding: 0;
        list-style: none;
        border: 1px solid #ccc;
        border-radius: 6px;
        background: white;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        max-height: 200px;
        overflow-y: auto;
        z-index: 10;
    }

        .searchable-dropdown .dropdown li[b-9w7a0otxc3] {
            padding: 8px 10px;
            cursor: pointer;
            transition: background-color 0.2s;
        }

            .searchable-dropdown .dropdown li:hover[b-9w7a0otxc3] {
                background-color: #f0f0f0;
            }
/* _content/LagerPilot/Components/Shared/Table/DataGrid.razor.rz.scp.css */
.data-card-grid[b-f7b8aq8cev] {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.5rem 1rem;
  font-size: 1rem;
}
.data-card-label[b-f7b8aq8cev] {
  font-weight: 600;
  color: #555;
  /* align-self: center; */
  word-break: break-word;
  hyphens: auto;
}
.data-card-value[b-f7b8aq8cev] {
  color: #222;
  align-self: center;
  word-break: break-word;
  hyphens: auto;
}
@media (max-width: 600px) {
  .data-card-grid[b-f7b8aq8cev] {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    font-size: 0.98rem;
  }
  .data-card-label[b-f7b8aq8cev] {
    margin-top: 0.5rem;
    color: #888;
  }
  .data-card-value[b-f7b8aq8cev] {
    margin-bottom: 0.5rem;
  }
}

.data-card-grid[b-f7b8aq8cev]  a { text-decoration: underline; }
.data-card-grid[b-f7b8aq8cev]  a:hover { color: #084a8a; }

/* Lists inside table cells */
[b-f7b8aq8cev] .data-card-value > ul,
[b-f7b8aq8cev] .data-card-label > ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
/* _content/LagerPilot/Components/Shared/Table/Table.razor.rz.scp.css */
.table[b-o6e4ryj7gs] {
    display: grid;
    grid-template-rows: auto 1fr;
}

table[b-o6e4ryj7gs] {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 1rem;
    text-align: left;
}

.table-wrapper[b-o6e4ryj7gs] {
    border-radius: var(--border-radius);
    overflow: auto;
    width: 100%;
    background: #f9f9f9;
}

table th[b-o6e4ryj7gs], table td[b-o6e4ryj7gs] {
    border: 0 solid #ddd;
    padding: 8px;
}

    table th[b-o6e4ryj7gs] {
        background-color: rgb(13, 108, 172);
        font-weight: bold;
        color: white;
    }

    table tr td:first-child[b-o6e4ryj7gs],
    table tr th:first-child[b-o6e4ryj7gs] {
        padding-left: 15px;
    }
    table tr td:last-child[b-o6e4ryj7gs],
    table tr th:last-child[b-o6e4ryj7gs] {
        padding-right: 15px;
    }

.clickable[b-o6e4ryj7gs] {
    cursor: pointer;
}

.table[b-o6e4ryj7gs]  a { text-decoration: underline; }
.table[b-o6e4ryj7gs]  a:hover { color: #084a8a; }

table tr:nth-child(even)[b-o6e4ryj7gs] {
    background-color: #e8f0f6;
}

table th.sortable:hover[b-o6e4ryj7gs] {
    background-color: #e0e0e0;
}

table tr:hover[b-o6e4ryj7gs] {
    background-color: #f1f1f1;
}

.filter-btn[b-o6e4ryj7gs] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.filter-popup[b-o6e4ryj7gs] {
    position: absolute;
    background: white;
    border: 0 solid #ddd;
    padding: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.pagination-controls[b-o6e4ryj7gs] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.pagination-controls button[b-o6e4ryj7gs] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 4px;
}

.pagination-controls button:disabled[b-o6e4ryj7gs] {
    background-color: #ccc;
    cursor: not-allowed;
}

.pagination-controls span[b-o6e4ryj7gs] {
    font-size: 1rem;
}

/* Lists inside table cells */
[b-o6e4ryj7gs] table td > ul,
[b-o6e4ryj7gs] table th > ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

[b-o6e4ryj7gs] table tr:nth-child(even) .chip {
    background: #edf3f8;
}
/* _content/LagerPilot/Components/Shared/View.razor.rz.scp.css */
.view[b-dc6p9ouo4u] {
    position: relative;
    max-height: 100%;
}
@media (min-width: 900px) {
    .view-scroll[b-dc6p9ouo4u] {
        position: relative;
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
    }
}
    
/* Mobile: make aside collapsible and ensure it only overlaps the .view container */
@media (max-width: 900px) {
    .view[b-dc6p9ouo4u] {
        grid-template-columns: 1fr;
        position: relative; /* make overlay/aside position relative to this container */
        overflow: visible;
    }
        .view.peek-right[b-dc6p9ouo4u] {
            margin-left: -10px;
            margin-right: -10px;
        }

        .view.peek-left[b-dc6p9ouo4u] {
            margin-left: -10px;
            margin-right: -10px;
        }
        @media (min-width: 500px) {
            .view.peek-right[b-dc6p9ouo4u] {
                margin-left: -30px;
                margin-right: -30px;
            }

            .view.peek-left[b-dc6p9ouo4u] {
                margin-left: -30px;
                margin-right: -30px;
            }            
        }
    /* Scroll-snap container for mobile: make each pane full-width and snap to it */
    .view-scroll[b-dc6p9ouo4u] {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        /* -webkit-overflow-scrolling: touch; */
        scroll-behavior: smooth;
        width: 100%;
        height: 100%;
        position: relative; /* for ::before/::after gradients */
    }

    .view-pane[b-dc6p9ouo4u] {    
        scroll-snap-align: end;
        height: 100%;
        position: relative;
    }
        .view-pane.peek-right[b-dc6p9ouo4u] {
            scroll-snap-align: start;
            padding-left: 10px;
            /* make pane slightly smaller than full width so the next pane peeks in */
            flex: 0 0 calc(100% - 30px); /* leave 30px peek */
            width: calc(100% - 30px);
            min-width: calc(100% - 30px);
            /* margin-right: 16px; /* small gap between panes */
        }
        .view-pane.peek-right.view-side[b-dc6p9ouo4u] {
            filter: brightness(0.8) blur(3px) grayscale(0.2) opacity(0.8);
        }
        .view-pane.peek-left[b-dc6p9ouo4u] {
            scroll-snap-align: end;
            padding-right: 10px;
            /* make pane slightly smaller than full width so the next pane peeks in */
            flex: 0 0 calc(100% - 30px); /* leave 30px peek */
            justify-content: flex-end;
            width: calc(100% - 30px);
            min-width: calc(100% - 30px);
            /* margin-left: 16px; /* small gap between panes */
        }
        .view-pane.peek-left.view-main[b-dc6p9ouo4u] {
            filter: brightness(0.8) blur(3px) grayscale(0.2) opacity(0.8);
        }
        .view-pane[b-dc6p9ouo4u] {
            transition: filter 0.3s ease;
        }        
        @media (min-width: 500px) {
            .view-pane.peek-right[b-dc6p9ouo4u] {
                padding-left: 30px;
                /* make pane slightly smaller than full width so the next pane peeks in */
                flex: 0 0 calc(100% - 60px); 
                width: calc(100% - 60px);
                min-width: calc(100% - 60px);
                /* margin-right: 16px; /* small gap between panes */
            }
            .view-pane.peek-left[b-dc6p9ouo4u] {
                padding-right: 30px;
                /* make pane slightly smaller than full width so the next pane peeks in */
                flex: 0 0 calc(100% - 60px); /* leave 30px peek */
                width: calc(100% - 60px);
                min-width: calc(100% - 60px);
                /* margin-left: 16px; /* small gap between panes */
            } 
        }

    /* Peek trigger buttons (hidden by default) */
    .peek-trigger[b-dc6p9ouo4u] {
        display: none;
        position: absolute;
        top: 0;
        height: 100%;
        width: 48px;
        padding: 0;
        border: none;
        cursor: pointer;
        z-index: 104;
        align-items: center;
        justify-content: center;
        background: transparent;
    }

    /* show right trigger when .view-scroll has peek-right */
    .view-scroll.peek-right ~ .peek-trigger.peek-right[b-dc6p9ouo4u] {
        display: flex;
        right: 0;
    }

    /* show left trigger when .view-scroll has peek-left */
    .view-scroll.peek-left ~ .peek-trigger.peek-left[b-dc6p9ouo4u] {
        display: flex;
        left: 0;
    }

}
/* _content/LagerPilot/Components/Supplier/ContactCard.razor.rz.scp.css */
.contact-card[b-zy8hkyk9f6] {
  display: block;
  border-radius: 8px;
  padding: 12px;
  background: var(--card-bg, #ffffff);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.1);
  border: 1px solid rgba(15,23,42,0.04);
}

.contact-card__header[b-zy8hkyk9f6] {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.contact-card__name[b-zy8hkyk9f6] {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text, #0f172a);
}

.contact-card__dept[b-zy8hkyk9f6] {
  color: var(--muted, #64748b);
}

.contact-card__body[b-zy8hkyk9f6] {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-card__row[b-zy8hkyk9f6] {
  display: flex;
}

.contact-card__link[b-zy8hkyk9f6] {
  background: transparent;
  border: none;
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color, #0f766e);
  cursor: pointer;
  border-radius: 6px;
}

.contact-card__link:hover[b-zy8hkyk9f6] {
  background: rgba(15,23,42,0.03);
}

.contact-card__text[b-zy8hkyk9f6] {
}

.contact-card__footer[b-zy8hkyk9f6] {
  margin-top: 8px;
}

.contact-card__meta[b-zy8hkyk9f6] {
  color: var(--muted, #64748b);
}

/* Slim variant */
.contact-card--slim[b-zy8hkyk9f6] {
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-card--slim .contact-card__slim[b-zy8hkyk9f6] {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.contact-card__slim-left[b-zy8hkyk9f6] {
  display: flex;
  flex-direction: column;
}

.contact-card__slim-right[b-zy8hkyk9f6] {
  display: flex;
  gap: 6px;
}

.contact-card--slim .contact-card__name[b-zy8hkyk9f6] {
}

.contact-card--slim .contact-card__dept[b-zy8hkyk9f6] {
}

.contact-card--slim .contact-card__link[b-zy8hkyk9f6] {
  padding: 4px;
  min-width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
}
/* _content/LagerPilot/Components/Supplier/SupplierForm.razor.rz.scp.css */
.supplier-group[b-kcolxsmjrz] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    grid-gap: 10px;
    margin: 0 0 10px 0;
}

.field-controls[b-kcolxsmjrz] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

[b-kcolxsmjrz] input {
    width: 100%;
}

.contact[b-kcolxsmjrz] {
    display: grid;
    grid-template-columns: 1fr auto;
}
/* _content/LagerPilot/Components/Toast/ToastHost.razor.rz.scp.css */
.toast-container[b-pywv48wnrn] {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
    align-items: center;
    width: auto;
    min-width: 320px;
    max-width: 90vw;
}
/* _content/LagerPilot/Components/Toast/ToastInstance.razor.rz.scp.css */
.toast[b-0lk73pkfj9] {
    min-width: 200px;
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    pointer-events: auto;
    animation: fadein-b-0lk73pkfj9 0.3s;
}

.toast-info[b-0lk73pkfj9] { border-left: 5px solid #2196f3; }
.toast-success[b-0lk73pkfj9] { border-left: 5px solid #4caf50; }
.toast-warning[b-0lk73pkfj9] { border-left: 5px solid #ff9800; }
.toast-error[b-0lk73pkfj9] { border-left: 5px solid #f44336; }

.close-button[b-0lk73pkfj9] {
    margin-left: auto;
    cursor: pointer;
    font-size: 1.2rem;
    color: #888;
}

.icon[b-0lk73pkfj9] {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.center[b-0lk73pkfj9] {
    flex: 1;
}

.message[b-0lk73pkfj9] {
    margin: 0;
}

@keyframes fadein-b-0lk73pkfj9 {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
/* _content/LagerPilot/Components/WorkTask/WorkTaskArticleCard.razor.rz.scp.css */
/* WorkTaskArticleCard.razor.css */
.worktask-article-card[b-53da6zp23b] {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.worktask-article-row[b-53da6zp23b] {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.worktask-article-info[b-53da6zp23b] {
  flex: 1 1 0;
  min-width: 0;
}
.pack-action[b-53da6zp23b] {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 160px;
  justify-content: flex-end;
}
.packed-by[b-53da6zp23b] {
  color: #0bb68e;
  font-weight: 600;
}
@media (max-width: 800px) {
  .worktask-article-row[b-53da6zp23b] {
    flex-direction: column;
    gap: 0.5rem;
  }
  .pack-action[b-53da6zp23b] {
    justify-content: flex-start;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .worktask-article-card[b-53da6zp23b] {
    padding: 0.75rem 0.5rem;
    font-size: 0.98rem;
  }
}
/* _content/LagerPilot/Components/WorkTask/WorkTaskCard.razor.rz.scp.css */
/* WorkTaskCard.razor.css */
.worktask-title[b-e6ugh2ivpj] {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  word-break: break-word;
}
.worktask-description[b-e6ugh2ivpj] {
  color: #444;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  word-break: break-word;
}
.worktask-meta[b-e6ugh2ivpj] {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.98rem;
  color: #666;
}
.worktask-meta-item[b-e6ugh2ivpj] {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.worktask-users[b-e6ugh2ivpj] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.worktask-user-chip[b-e6ugh2ivpj] {
  background: #f0f4fa;
  color: #2a4d7a;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.worktask-completed-badge[b-e6ugh2ivpj] {
  position: absolute;
  top: -0.7rem;
  right: 0.2rem;
  background: #27ae60;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.13rem 0.85rem 0.13rem 0.7rem;
  box-shadow: 0 1px 4px rgba(39,174,96,0.08);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .worktask-title[b-e6ugh2ivpj] {
    font-size: 1.05rem;
  }
  .worktask-meta[b-e6ugh2ivpj] {
    flex-direction: column;
    gap: 0.5rem;
  }
  .worktask-users[b-e6ugh2ivpj] {
    gap: 0.3rem;
  }
  .worktask-completed-badge[b-e6ugh2ivpj] {
    font-size: 0.82rem;
    padding: 0.1rem 0.6rem 0.1rem 0.5rem;
    top: -0.5rem;
    right: 0.1rem;
  }
}
