/* /Shared/Chip.razor.rz.scp.css */
/* uses CSS variables with fallbacks: --chip-background-color -> --theme-selected-background-color -> rgba(...) */
/* styles the chip container to look like a rounded pill with text and a close button, with hover and focus states. */
.chip[b-n0n40h1abk] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 12px;
  background-color: var(--chip-background-color, var(--theme-selected-background-color, rgba(0, 0, 0, 0.1)));
  border-radius: 16px;
  font-size: 0.9rem;
  color: var(--chip-text-color, var(--main-text-color));
  border: 1px solid var(--chip-border-color, var(--input-accent-color, #ccc));
  margin: 4px 4px 4px 0;
  cursor: default;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.chip:hover[b-n0n40h1abk] {
  background-color: var(--chip-background-hover-color, var(--theme-selected-background-color, rgba(0, 0, 0, 0.15)));
  border-color: var(--chip-border-hover-color, var(--input-accent-color, #999));
}
.chip:focus[b-n0n40h1abk] {
  outline: 2px solid var(--input-accent-color, #000);
  outline-offset: 2px;
}

/*  keeps the text on one line, truncates with "..." if it exceeds 200px, and lets the close button sit to the right */
.chip-text[b-n0n40h1abk] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

/* Styles the x button inside the chip; creates a small, circular, icon-only button that shows a hover background and is keyboard accessible. It stays a fixed size and doesn't shrink */
.chip-close[b-n0n40h1abk] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  color: var(--chip-close-color, var(--main-text-color));
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.chip-close:hover[b-n0n40h1abk] {
  background-color: var(--chip-close-hover-background, rgba(0, 0, 0, 0.1));
  color: var(--chip-close-hover-color, var(--main-text-color));
}
.chip-close:focus[b-n0n40h1abk] {
  outline: 2px solid var(--input-accent-color, #000);
  outline-offset: 2px;
}
.chip-close:active[b-n0n40h1abk] {
  background-color: var(--chip-close-active-background, rgba(0, 0, 0, 0.2));
}

/* Container for wrapping multiple chips; uses flex-wrap to allow chips to flow to multiple lines */
.chip-container[b-n0n40h1abk] {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 8px 0;
}

/* Styles the "+X more" indicator to match chip text, appearing after the first 5 visible chips when more are selected */
.chip-more[b-n0n40h1abk] {
  font-size: 0.9rem;
  color: var(--chip-text-color, var(--main-text-color));
  margin-left: 8px;
  align-self: center;
}
/* /Shared/DonutSpinner.razor.rz.scp.css */
#spinner-color-mask feFlood[b-w40qjugg4r] {
	flood-color: var(--spinner-color);
}

.donut-spinner-container[b-w40qjugg4r] {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 96px;
}

.spinner[b-w40qjugg4r] {
	display: inline-block;
	width: 48px;
	height: 48px;
}

.spinner .full-donut
.spinner .bite1[b-w40qjugg4r],
.spinner .bite2[b-w40qjugg4r] {
	visibility: visible;
}

.spinner .bite3-extra[b-w40qjugg4r],
.spinner .crumb1[b-w40qjugg4r],
.spinner .crumb2[b-w40qjugg4r],
.spinner .crumb3[b-w40qjugg4r] {
	visibility: hidden;
}

.spinner.animate[b-w40qjugg4r] {
	animation-duration: 40s;
	animation-name: anim-spinner-b-w40qjugg4r;
	animation-fill-mode: forwards;
	animation-timing-function: steps(1, end);
	animation-iteration-count: infinite;
}

.spinner.animate svg[b-w40qjugg4r] {
	overflow: visible;
}

.spinner.animate .donut-container[b-w40qjugg4r] {
	animation-duration: 4s;
	animation-name: anim-donut-container-b-w40qjugg4r;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	transform-origin: 24px 24px;
	mix-blend-mode: color;
}

.spinner.animate .full-donut[b-w40qjugg4r] {
	animation-duration: 4s;
	animation-name: anim-full-donut-b-w40qjugg4r;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.spinner.animate .bite1[b-w40qjugg4r] {
	animation-duration: 4s;
	animation-name: anim-bite1-b-w40qjugg4r;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.spinner.animate .bite2[b-w40qjugg4r] {
	animation-duration: 4s;
	animation-name: anim-bite2-b-w40qjugg4r;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.spinner.animate .bite3[b-w40qjugg4r] {
	animation-duration: 4s;
	animation-name: anim-bite3-b-w40qjugg4r;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transform-origin: 24px 24px;
}

.spinner.animate .bite3-extra[b-w40qjugg4r] {
	animation-duration: 4s;
	animation-name: anim-bite3-extra-b-w40qjugg4r;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transform-origin: 24px 24px;
}

.spinner.animate .bite1-crumbs .crumb1[b-w40qjugg4r],
.spinner.animate .bite1-crumbs .crumb2[b-w40qjugg4r],
.spinner.animate .bite1-crumbs .crumb3[b-w40qjugg4r],
.spinner.animate .bite2-crumbs .crumb1[b-w40qjugg4r],
.spinner.animate .bite2-crumbs .crumb2[b-w40qjugg4r],
.spinner.animate .bite2-crumbs .crumb3[b-w40qjugg4r],
.spinner.animate .bite3-crumbs .crumb1[b-w40qjugg4r],
.spinner.animate .bite3-crumbs .crumb2[b-w40qjugg4r],
.spinner.animate .bite3-crumbs .crumb3[b-w40qjugg4r] {
	animation-duration: 4s;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.32, 1.25, 1, 1);
	animation-iteration-count: infinite;
}

.spinner.animate .bite1-crumbs .crumb1[b-w40qjugg4r] {
	animation-name: anim-bite1-crumbs-crumb1-b-w40qjugg4r;
}

.spinner.animate .bite1-crumbs .crumb2[b-w40qjugg4r] {
	animation-name: anim-bite1-crumbs-crumb2-b-w40qjugg4r;
}

.spinner.animate .bite1-crumbs .crumb3[b-w40qjugg4r] {
	animation-name: anim-bite1-crumbs-crumb3-b-w40qjugg4r;
}

.spinner.animate .bite2-crumbs .crumb1[b-w40qjugg4r] {
	animation-name: anim-bite2-crumbs-crumb1-b-w40qjugg4r;
}

.spinner.animate .bite2-crumbs .crumb2[b-w40qjugg4r] {
	animation-name: anim-bite2-crumbs-crumb2-b-w40qjugg4r;
}

.spinner.animate .bite2-crumbs .crumb3[b-w40qjugg4r] {
	animation-name: anim-bite2-crumbs-crumb3-b-w40qjugg4r;
}

.spinner.animate .bite3-crumbs .crumb1[b-w40qjugg4r] {
	animation-name: anim-bite3-crumbs-crumb1-b-w40qjugg4r;
}

.spinner.animate .bite3-crumbs .crumb2[b-w40qjugg4r] {
	animation-name: anim-bite3-crumbs-crumb2-b-w40qjugg4r;
}

.spinner.animate .bite3-crumbs .crumb3[b-w40qjugg4r] {
	animation-name: anim-bite3-crumbs-crumb3-b-w40qjugg4r;
}

@keyframes anim-spinner-b-w40qjugg4r {
	0% {
		transform: rotate(0deg);
	}

	10% {
		transform: scaleY(-1) rotate(200deg);
	}

	20% {
		transform: rotate(280deg);
	}

	30% {
		transform: scaleY(-1) rotate(100deg);
	}

	40% {
		transform: rotate(80deg);
	}

	50% {
		transform: scaleY(-1) rotate(320deg);
	}

	60% {
		transform: rotate(190deg);
	}

	70% {
		transform: scaleY(-1) rotate(40deg);
	}

	80% {
		transform: rotate(220deg);
	}

	90% {
		transform: scaleY(-1) rotate(180deg);
	}
}

@keyframes anim-donut-container-b-w40qjugg4r {
	0% {
		transform: rotate(0deg) translate(0, 0);
	}

	15% {
		transform: rotate(0deg) translate(0, 0);
		animation-timing-function: linear
	}

	17% {
		transform: rotate(-20deg) translate(-2px, -1px);
		animation-timing-function: ease-out;
	}

	30% {
		transform: rotate(-30deg) translate(0, 0);
		animation-timing-function: linear;
	}

	32% {
		transform: rotate(10deg) translate(0, 3px);
		animation-timing-function: ease-out;
	}

	45% {
		transform: rotate(20deg) translate(0, 0);
		animation-timing-function: linear;
	}

	47% {
		transform: rotate(-30deg) translate(-3px, -3px);
		animation-timing-function: ease-out;
	}

	60% {
		transform: rotate(-40deg) translate(0, 0);
		animation-timing-function: ease;
	}

	100% {
		transform: rotate(900deg) translate(0, 0);
	}
}

@keyframes anim-full-donut-b-w40qjugg4r {
	0% {
		visibility: visible;
	}

	15% {
		visibility: hidden;
	}

	99% {
		visibility: hidden;
	}

	100% {
		visibility: visible;
	}
}

@keyframes anim-bite1-b-w40qjugg4r {
	0% {
		visibility: visible;
	}

	30% {
		visibility: hidden;
	}

	99% {
		visibility: hidden;
	}

	100% {
		visibility: visible;
	}
}

@keyframes anim-bite2-b-w40qjugg4r {
	0% {
		visibility: visible;
	}

	45% {
		visibility: hidden;
	}

	99% {
		visibility: hidden;
	}

	100% {
		visibility: visible;
	}
}

@keyframes anim-bite3-b-w40qjugg4r {
	0% {
		transform: rotate(0deg);
	}

	60% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(90deg);
	}
}

@keyframes anim-bite3-extra-b-w40qjugg4r {
	0% {
		transform: rotate(0deg);
		visibility: hidden;
	}

	60% {
		transform: rotate(0deg);
		visibility: visible;
	}

	100% {
		transform: rotate(-90deg);
		visibility: visible;
	}
}

/*Bite1 Crumbs*/
@keyframes anim-bite1-crumbs-crumb1-b-w40qjugg4r {
	14.9999% {
		visibility: hidden;
	}

	15% {
		visibility: visible;
		opacity: 1;
		transform: rotate(0) translate(0, 0);
	}

	18% {
		opacity: 1;
	}

	25% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(0) translate(20px, 0);
	}

	100% {
		visibility: hidden;
	}
}

@keyframes anim-bite1-crumbs-crumb2-b-w40qjugg4r {
	14.9999% {
		visibility: hidden;
	}

	15% {
		visibility: visible;
		opacity: 1;
		transform: rotate(-20deg) translate(0, 0);
	}

	18% {
		opacity: 1;
	}

	25% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(-20deg) translate(18px, 0);
	}

	100% {
		visibility: hidden;
	}
}

@keyframes anim-bite1-crumbs-crumb3-b-w40qjugg4r {
	14.9999% {
		visibility: hidden;
	}

	15% {
		visibility: visible;
		opacity: 1;
		transform: rotate(20deg) translate(0, 0);
	}

	18% {
		opacity: 1;
	}

	25% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(20deg) translate(18px, 0);
	}

	100% {
		visibility: hidden;
	}
}

/*Bite2 Crumbs*/
@keyframes anim-bite2-crumbs-crumb1-b-w40qjugg4r {
	29.9999% {
		visibility: hidden;
	}

	30% {
		visibility: visible;
		opacity: 1;
		transform: rotate(0) translate(0, 0);
	}

	33% {
		opacity: 1;
	}

	40% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(0) translate(20px, 0);
	}

	100% {
		visibility: hidden;
	}
}

@keyframes anim-bite2-crumbs-crumb2-b-w40qjugg4r {
	29.9999% {
		visibility: hidden;
	}

	30% {
		visibility: visible;
		opacity: 1;
		transform: rotate(-20deg) translate(0, 0);
	}

	33% {
		opacity: 1;
	}

	40% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(-20deg) translate(18px, 0);
	}

	100% {
		visibility: hidden;
	}
}

@keyframes anim-bite2-crumbs-crumb3-b-w40qjugg4r {
	29.9999% {
		visibility: hidden;
	}

	30% {
		visibility: visible;
		opacity: 1;
		transform: rotate(20deg) translate(0, 0);
	}

	33% {
		opacity: 1;
	}

	40% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(20deg) translate(18px, 0);
	}

	100% {
		visibility: hidden;
	}
}

/*Bite3 Crumbs*/
@keyframes anim-bite3-crumbs-crumb1-b-w40qjugg4r {
	44.9999% {
		visibility: hidden;
	}

	45% {
		visibility: visible;
		opacity: 1;
		transform: rotate(0) translate(0, 0);
	}

	48% {
		opacity: 1;
	}

	55% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(0) translate(20px, 0);
	}

	100% {
		visibility: hidden;
	}
}

@keyframes anim-bite3-crumbs-crumb2-b-w40qjugg4r {
	44.9999% {
		visibility: hidden;
	}

	45% {
		visibility: visible;
		opacity: 1;
		transform: rotate(-30deg) translate(0, 0);
	}

	48% {
		opacity: 1;
	}

	55% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(-30deg) translate(18px, 0);
	}

	100% {
		visibility: hidden;
	}
}

@keyframes anim-bite3-crumbs-crumb3-b-w40qjugg4r {
	44.9999% {
		visibility: hidden;
	}

	45% {
		visibility: visible;
		opacity: 1;
		transform: rotate(30deg) translate(0, 0);
	}

	48% {
		opacity: 1;
	}

	55% {
		visibility: hidden;
		opacity: 0;
		transform: rotate(30deg) translate(18px, 0);
	}

	100% {
		visibility: hidden;
	}
}
/* /Shared/MultiSelectDropdown.razor.rz.scp.css */
/* The clickable input/button that displays selected count or placeholder */
.multiselect-input[b-87034f85id] {
  background: var(--input-background-color);
  border-bottom: 2px solid var(--input-accent-color);
  border-radius: 4px;
  display: flex;
  height: 38px;
  padding: 8px;
  padding-right: 38px;
  /* Extra padding on right to make room for arrow */
  transition: box-shadow 0.1s linear;
  box-sizing: border-box;
  cursor: pointer;
}
.multiselect-input:focus[b-87034f85id], .multiselect-input.multiselect-open[b-87034f85id] {
  outline: 2.5px solid #101010 !important;
  outline-style: solid !important;
  outline-offset: -2px !important;
  /* Move outline inside to match inset box-shadow behavior */
}

/* The text inside the input showing selected count or placeholder */
.multiselect-value[b-87034f85id] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* The dropdown menu that appears below the input when opened */
.multiselect-dropdown[b-87034f85id] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: fit-content;
  background: var(--input-background-color);
  border: 1px solid #646464;
  border-top: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 0.75px;
}

/* Container for the search input at the top of the dropdown */
.multiselect-search[b-87034f85id] {
  padding: 8px;
  border-bottom: 1px solid var(--input-accent-color);
}

/* The search input field for filtering options */
.multiselect-search-input[b-87034f85id] {
  font-size: 1rem;
  color: var(--input-text-color);
  background: var(--input-background-color);
  border: none;
  border-bottom: 1px solid var(--input-accent-color);
  border-radius: 0;
  width: 100%;
  padding: 4px 8px;
  box-sizing: border-box;
}
.multiselect-search-input:focus[b-87034f85id] {
  outline: none;
  border-bottom: 2px solid var(--input-accent-color);
}

/* Helper text below search input (always visible) */
.multiselect-search-helper[b-87034f85id] {
  font-size: 0.75rem;
  color: var(--input-text-color);
  opacity: 0.7;
  padding-top: 4px;
  padding-left: 2px;
  line-height: 1.2;
  margin-top: 2px;
}

/* Scrollable container for the list of selectable options */
.multiselect-options[b-87034f85id] {
  max-height: 250px;
  overflow-y: auto;
}

/* Individual option item with checkbox and text */
.multiselect-option[b-87034f85id] {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.1s ease;
  gap: 8px;
  outline: none;
  /* Remove default focus outline - we use background color instead */
  /* Holds and styles the option text, and uses flexbox to fill the remaining space after the checkbox */
}
.multiselect-option:focus[b-87034f85id] {
  outline: none;
}
.multiselect-option:hover:not(.selected):not(.focused)[b-87034f85id] {
  background-color: var(--theme-selected-background-color, rgba(0, 0, 0, 0.05));
}
.multiselect-option.focused:not(.selected)[b-87034f85id] {
  background-color: var(--theme-selected-background-color, rgba(0, 0, 0, 0.1));
}
.multiselect-option.selected:not(.focused):not(:hover)[b-87034f85id] {
  background-color: var(--theme-selected-background-color, rgba(0, 0, 0, 0.15));
}
.multiselect-option.selected:hover:not(.focused)[b-87034f85id] {
  background-color: var(--theme-selected-background-color, rgba(0, 0, 0, 0.2));
}
.multiselect-option.selected.focused[b-87034f85id] {
  background-color: var(--theme-selected-background-color, rgba(0, 0, 0, 0.25));
}
.multiselect-option:hover.focused:not(.selected)[b-87034f85id] {
  background-color: var(--theme-selected-background-color, rgba(0, 0, 0, 0.1));
}
.multiselect-option input[type=checkbox][b-87034f85id] {
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  /* Prevents checkbox from shrinking when space is tight */
  outline: none;
  /* Remove default focus outline to match mouse click behavior */
}
.multiselect-option input[type=checkbox]:focus[b-87034f85id] {
  outline: none;
}
.multiselect-option span[b-87034f85id] {
  flex: 1;
  /* Takes up all remaining space after the checkbox (which has flex-shrink: 0) */
  font-size: 1rem;
  color: var(--input-text-color);
}

/* Message displayed when no options are available */
.multiselect-no-options[b-87034f85id] {
  padding: 16px;
  text-align: center;
  color: var(--input-text-color);
  font-size: 0.9rem;
}

/* Disable hover effects when keyboard navigation is active to prevent dual highlighting */
.multiselect-dropdown.keyboard-nav-active .multiselect-option:hover:not(.selected):not(.focused)[b-87034f85id] {
  background-color: transparent !important;
}
.multiselect-dropdown.keyboard-nav-active .multiselect-option.selected:hover:not(.focused)[b-87034f85id] {
  background-color: var(--theme-selected-background-color, rgba(0, 0, 0, 0.15)) !important;
}
/* /Shared/ReportedIssueDetails.razor.rz.scp.css */
.modal-content.wide[b-14lj7tae9w] {
    max-width: 656px;
}

/* Blur specific elements when duplicate confirmation is shown */
.modal-blur-content h2[b-14lj7tae9w] {
    filter: blur(3px);
    transition: filter 0.3s ease;
}

/* 
    Select all form input containers that are inside the modal-blur-content area, but exclude any that have the keep-focused class.
    Applies a 3-pixel blur effect to make the element appear out of focus. Creates a smooth 0.3-second animation when the blur is applied/removed. Disables mouse interactions (clicks, hovers) on the blurred elements.
*/
.modal-blur-content .form-input-container:not(.keep-focused)[b-14lj7tae9w] {
    filter: blur(3px);
    transition: filter 0.3s ease;
    pointer-events: none;
}

/* 
    Select all form-same-line containers that are inside the modal-blur-content area, but only if they don't contain any child elements with the keep-focused class.
    Applies a 3-pixel blur effect to make the element appear out of focus. Creates a smooth 0.3-second animation when the blur is applied/removed.
*/
.modal-blur-content .form-same-line:not(:has(.keep-focused))[b-14lj7tae9w] {
    filter: blur(3px);
    transition: filter 0.3s ease;
}

/* 
    Select all direct children of modal-section containers that are inside modal-blur-content, but exclude any elements that have either the form-input-container class OR the keep-focused class.
    Ensures everything else in the modal gets blurred, not just form inputs.
    Applies a 3-pixel blur effect to make the element appear out of focus. Creates a smooth 0.3-second animation when the blur is applied/removed.
*/
.modal-blur-content .modal-section > *:not(.form-input-container):not(.keep-focused)[b-14lj7tae9w] {
    filter: blur(3px);
    transition: filter 0.3s ease;
}

/* Keep the item info unblurred. */
.keep-focused[b-14lj7tae9w] {
    filter: none !important;
    pointer-events: auto;
}

/* Adjust modal position to avoid overlapping the Item # - Description field */
.modal-content[b-14lj7tae9w] {
    margin-top: 20px;
}
