/* Fulfillment-Jobs – Layout-Ergänzungen zu Base-Widgets (mobile-first) */
/* Änderungsprotokoll: 2026-07-13 | subagent-create-screen | @skill-css-rules, @skill-change-provenance | Jobs-Screen-Layout von Suche abgeleitet */

.fulfillment-jobs-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Filter-Sidebar: Karten-Layout, Schatten, Sticky-Scroll */
.fulfillment-jobs-filters {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.9rem;
  box-shadow: var(--shadow-sm), 0 10px 28px rgba(15, 17, 17, 0.05);
  padding: 0.875rem 0.75rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Filter-Header mit Trennlinie und Abstand */
.fulfillment-jobs-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--color-border);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Filter-Titel mit Icon und Typografie */
.fulfillment-jobs-filter-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-headline);
  letter-spacing: 0.01em;
  line-height: var(--line-height-normal);
}

.fulfillment-jobs-filter-title::before {
  content: '';
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-jobs-filter-toggle,
.fulfillment-jobs-filter-close {
  display: none;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Mobile Schließen-Button mit Label und X-Icon */
.fulfillment-jobs-filter-close {
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  background-color: var(--color-surface);
  color: var(--color-text-muted);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.fulfillment-jobs-filter-close-label {
  line-height: var(--line-height-normal);
}

.fulfillment-jobs-filter-close::before {
  content: '';
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-jobs-filter-close:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
  color: var(--color-text);
}

.fulfillment-jobs-filter-close:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-focus-shadow);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Filter-Formular vertikaler Rhythmus */
.fulfillment-jobs-filter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Änderungsprotokoll: 2026-07-13 | parent-agent | @skill-css-rules | Legacy-Accordion deaktivieren falls gecachtes details/summary im DOM */
#fulfillment-jobs-filter-form details.fulfillment-jobs-filter-section > summary.fulfillment-jobs-filter-section-title {
  pointer-events: none;
  cursor: default;
  list-style: none;
}

#fulfillment-jobs-filter-form details.fulfillment-jobs-filter-section > summary.fulfillment-jobs-filter-section-title::-webkit-details-marker {
  display: none;
}

#fulfillment-jobs-filter-form details.fulfillment-jobs-filter-section > summary.fulfillment-jobs-filter-section-title::marker {
  content: '';
}

#fulfillment-jobs-filter-form details.fulfillment-jobs-filter-section > summary.fulfillment-jobs-filter-section-title::after {
  content: none;
}

#fulfillment-jobs-filter-form details.fulfillment-jobs-filter-section .fulfillment-jobs-filter-section-body {
  display: flex !important;
}

/* Änderungsprotokoll: 2026-07-13 | parent-agent | @skill-css-rules | Filter-Sektion statisch (nicht zuklappbar), overflow visible für Select-Dropdowns */
.fulfillment-jobs-filter-section {
  margin-bottom: 0;
  border: 1px solid var(--color-primary-soft-border);
  border-radius: 0.625rem;
  background-color: var(--color-surface-hover);
  box-shadow: inset 0 0 0 1px var(--color-primary-soft-bg);
  overflow: visible;
}

/* Änderungsprotokoll: 2026-07-13 | parent-agent | @skill-css-rules | Statische Sektions-Überschrift ohne Accordion-Chevron */
.fulfillment-jobs-filter-section-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  padding: 0.5625rem 0.625rem;
  margin-bottom: 0;
  border-radius: 0.625rem 0.625rem 0 0;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Sektions-Inhalt mit Innenabstand */
.fulfillment-jobs-filter-section-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.625rem 0.625rem;
  border-radius: 0 0 0.625rem 0.625rem;
  overflow: visible;
}

.fulfillment-jobs-filter-group {
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.fulfillment-jobs-filter-group:focus-within {
  z-index: 20;
}

.fulfillment-jobs-filter-group:last-child {
  margin-bottom: 0;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Select-Felder an base-form-input angeglichen */
.fulfillment-jobs-filter-select {
  width: 100%;
  min-height: 2.125rem;
  display: block;
  position: relative;
  z-index: 1;
  appearance: none;
  -webkit-appearance: none;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.35;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.4375rem;
  padding: 0.375rem 1.75rem 0.375rem 0.5625rem;
  box-sizing: border-box;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23565959' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fulfillment-jobs-filter-select:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
}

.fulfillment-jobs-filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-focus-shadow);
  z-index: 25;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Filter-Autosuggest Stadt/Unternehmen */
.fulfillment-jobs-filter-autosuggest-group {
  position: relative;
}

.fulfillment-jobs-filter-autosuggest-input {
  width: 100%;
  min-height: 2.125rem;
  display: block;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.35;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.4375rem;
  padding: 0.375rem 0.5625rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fulfillment-jobs-filter-autosuggest-input::placeholder {
  color: var(--color-text-muted);
}

.fulfillment-jobs-filter-autosuggest-input:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
}

.fulfillment-jobs-filter-autosuggest-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-focus-shadow);
}

.fulfillment-jobs-filter-autosuggest {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  right: 0;
  z-index: 30;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-md), 0 12px 28px rgba(15, 17, 17, 0.08);
  overflow: hidden;
  padding: 0.25rem 0;
}

.fulfillment-jobs-filter-autosuggest-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.625rem 0.75rem;
  border: 0;
  background-color: transparent;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.fulfillment-jobs-filter-autosuggest-item:hover {
  background-color: var(--color-primary-soft-bg);
  color: var(--color-headline);
}

.fulfillment-jobs-filter-autosuggest-item.is-active {
  background-color: var(--color-primary-soft-bg);
  color: var(--color-headline);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ergebnis-Spalte als flexibles Layout */
.fulfillment-jobs-results {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Änderungsprotokoll: 2026-07-07 | parent-agent | @skill-css-rules | Mobile Filter-Toolbar mit Karten-Optik */
.fulfillment-jobs-toolbar {
  margin-bottom: 1rem;
}

/* Änderungsprotokoll: 2026-07-07 | parent-agent | @skill-css-rules | Mobile Filter-Button an Suchfeld und Sidebar angeglichen */
.fulfillment-jobs-filter-mobile-open {
  display: grid;
  grid-template-columns: 1.125rem 1fr 1rem;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--color-headline);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-sm), 0 4px 14px rgba(15, 17, 17, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.fulfillment-jobs-filter-mobile-open::before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--color-primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-jobs-filter-mobile-open::after {
  content: '';
  width: 1rem;
  height: 1rem;
  justify-self: end;
  background-color: var(--color-text-muted);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.fulfillment-jobs-filter-mobile-open:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
  box-shadow: var(--shadow-sm), 0 6px 18px rgba(15, 17, 17, 0.06);
}

.fulfillment-jobs-filter-mobile-open:active {
  transform: scale(0.992);
  box-shadow: var(--shadow-sm);
}

.fulfillment-jobs-filter-mobile-open:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 0 3px var(--color-primary-focus-shadow);
}

.fulfillment-jobs-filter-mobile-open[aria-expanded='true'] {
  border-color: var(--color-primary-soft-border);
  background-color: var(--color-primary-soft-bg);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255, 153, 0, 0.08);
}

.fulfillment-jobs-filter-mobile-open[aria-expanded='true']::after {
  background-color: var(--color-primary);
  transform: translateX(1px);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Suchzeile mit Icon und Karten-Rahmen */
.fulfillment-jobs-query-row {
  position: relative;
  margin-bottom: 1.25rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Suchfeld gross, mit Lupe-Icon und Focus-Ring */
.fulfillment-jobs-query-input {
  width: 100%;
  min-height: 2.75rem;
  appearance: none;
  -webkit-appearance: none;
  font-size: var(--font-size-base);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  padding: 0.8125rem 1rem 0.8125rem 2.75rem;
  box-sizing: border-box;
  box-shadow: var(--shadow-sm);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23565959' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.875rem center;
  background-size: 1.125rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.fulfillment-jobs-query-input::placeholder {
  color: var(--color-text-muted);
}

.fulfillment-jobs-query-input:hover {
  border-color: var(--color-border-highlight);
  background-color: var(--color-surface-hover);
}

.fulfillment-jobs-query-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 0 3px var(--color-primary-focus-shadow);
  background-color: var(--color-surface);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Autosuggest-Dropdown an Filter-Stil angeglichen */
.fulfillment-jobs-query-autosuggest {
  position: absolute;
  top: calc(100% + 0.375rem);
  left: 0;
  right: 0;
  z-index: 20;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-md), 0 12px 28px rgba(15, 17, 17, 0.08);
  overflow: hidden;
  padding: 0.25rem 0;
}

.fulfillment-jobs-query-autosuggest-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.625rem 1rem;
  border: 0;
  background-color: transparent;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-primary);
  color: var(--color-text);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.fulfillment-jobs-query-autosuggest-item:hover {
  background-color: var(--color-primary-soft-bg);
  color: var(--color-headline);
}

.fulfillment-jobs-query-autosuggest-item.is-active {
  background-color: var(--color-primary-soft-bg);
  color: var(--color-headline);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ladezustand waehrend AJAX-Suche */
.fulfillment-jobs-results.is-searching {
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Trefferzahl und View-Tabs gleiche Höhe in einer Zeile */
#fulfillment-jobs-results .fulfillment-jobs-results-header-row,
#fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row {
  --fulfillment-jobs-results-header-row-height: 3.625rem;
  --fulfillment-jobs-view-tabs-nav-width: 26rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  width: 100%;
  min-width: 0;
  margin-bottom: 1rem;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Trefferzahl nicht durch Flex schrumpfen lassen */
#fulfillment-jobs-results .fulfillment-jobs-results-header-row .fulfillment-jobs-results-count,
#fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row .fulfillment-jobs-results-count {
  flex: 0 1 auto;
  flex-shrink: 0;
  align-self: stretch;
  align-items: center;
  min-width: fit-content;
  min-height: var(--fulfillment-jobs-results-header-row-height);
  box-sizing: border-box;
  margin: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | View-Tabs nicht durch Trefferzahl zusammendruecken */
#fulfillment-jobs-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar,
#fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar {
  flex: 0 0 auto;
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  align-self: stretch;
  align-items: stretch;
  justify-content: flex-end;
}

#fulfillment-jobs-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-view-tabs-bar,
#fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-view-tabs-bar {
  height: 100%;
  align-items: stretch;
}

#fulfillment-jobs-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-nav,
#fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-nav {
  height: 100%;
  min-height: var(--fulfillment-jobs-results-header-row-height);
  align-items: stretch;
  box-sizing: border-box;
  flex: 0 0 var(--fulfillment-jobs-view-tabs-nav-width);
  flex-shrink: 0;
  width: var(--fulfillment-jobs-view-tabs-nav-width);
  min-width: var(--fulfillment-jobs-view-tabs-nav-width);
  max-width: 100%;
}

#fulfillment-jobs-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link,
#fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link {
  min-height: 100%;
  height: auto;
}

/* Änderungsprotokoll: 2026-07-13 | cursor-agent | @skill-css-rules, @skill-change-provenance | Abstand zur View-Tabs-Toolbar ueber Toolbar-Margin */
.fulfillment-jobs-results-count {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.375rem 0.5rem;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0.875rem 1rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  box-shadow: var(--shadow-sm);
}

.fulfillment-jobs-results-count-number {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.fulfillment-jobs-results-count-suffix {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  color: var(--color-text-muted);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Aktive Filter-Chips im Orange-Theme */
.fulfillment-jobs-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.fulfillment-jobs-active-filters:empty {
  display: none;
  margin-bottom: 0;
}

.fulfillment-jobs-active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.5rem 0.3125rem 0.75rem;
  border-radius: 999px;
  background-color: var(--color-primary-soft-bg);
  border: 1px solid var(--color-primary-soft-border);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: 1.35;
}

.fulfillment-jobs-active-filter-chip-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.fulfillment-jobs-active-filter-chip-remove:hover {
  background-color: var(--color-primary);
  color: var(--color-text-on-primary);
}

.fulfillment-jobs-active-filter-chip-remove:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-primary-focus-shadow);
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ergebnisliste mit groesserem Kartenabstand */
.fulfillment-jobs-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Ergebnis-Karte: linksbuendig, Akzentleiste, Hover */
/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Opportunity-Card Layout editorial */
.fulfillment-jobs-result-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  padding: 1.375rem 1.5rem 1.25rem;
  gap: 0.75rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-primary-soft-bg) 42%, var(--color-surface) 58%) 0%,
    var(--color-surface) 52%
  );
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Titel volle Breite, Preview neben Lead */
.fulfillment-jobs-result-card-content-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

.fulfillment-jobs-result-card-body {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  overflow-wrap: anywhere;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fulfillment-jobs-result-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  width: 100%;
}

.fulfillment-jobs-result-provider-kicker {
  margin: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.fulfillment-jobs-result-provider-kicker-link,
.fulfillment-jobs-result-provider-kicker-text {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  max-width: 100%;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  line-height: 1.35;
}

.fulfillment-jobs-result-provider-kicker-link::after {
  content: '';
  flex-shrink: 0;
  width: 0.75rem;
  height: 0.75rem;
  background-color: currentColor;
  opacity: 0.5;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-jobs-result-provider-kicker-link:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.fulfillment-jobs-result-employment-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  background-color: var(--color-primary-soft-bg);
  border: 1px solid var(--color-primary-soft-border);
  border-radius: 999px;
  padding: 0.25rem 0.6875rem;
  line-height: 1.35;
  white-space: nowrap;
}

.fulfillment-jobs-result-title {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0 0.8125rem;
  color: var(--color-headline);
  font-size: clamp(1.125rem, 0.55vw + 1rem, 1.4375rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.03em;
  line-height: 1.22;
  text-wrap: pretty;
}

.fulfillment-jobs-result-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 0.1875rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  box-shadow: 0 1px 4px rgba(255, 153, 0, 0.28);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fulfillment-jobs-result-card:hover .fulfillment-jobs-result-title::after {
  width: 4rem;
}

.fulfillment-jobs-result-title-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: color 0.22s ease;
}

.fulfillment-jobs-result-title-link:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

.fulfillment-jobs-result-lead {
  margin: 0;
  width: 100%;
  font-size: var(--font-size-base);
  line-height: 1.62;
  color: var(--color-text);
}

.fulfillment-jobs-result-tag-department {
  color: var(--color-info);
  border-color: rgba(59, 130, 246, 0.28);
  background-color: color-mix(in srgb, var(--color-info) 8%, var(--color-surface) 92%);
}

.fulfillment-jobs-result-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.875rem;
  margin-top: 0.125rem;
  padding-top: 0.875rem;
  border-top: 1px solid color-mix(in srgb, var(--color-border) 82%, transparent);
  width: 100%;
}

.fulfillment-jobs-result-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  max-width: 100%;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  line-height: 1.4;
}

.fulfillment-jobs-result-fact::before {
  content: '';
  flex-shrink: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: var(--color-primary);
  opacity: 0.72;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-jobs-result-fact-location::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}

.fulfillment-jobs-result-fact-phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}

.fulfillment-jobs-result-fact-found-at::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.fulfillment-jobs-result-fact-link {
  color: inherit;
  text-decoration: none;
}

.fulfillment-jobs-result-fact-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Apply-Button etwas breiter */
.fulfillment-jobs-result-apply-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.25rem;
  min-height: 2.375rem;
  padding: 0.4375rem 1.625rem;
  border-radius: 0.625rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
}

.fulfillment-jobs-result-card-preview {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  background-color: var(--color-surface);
}

.fulfillment-jobs-result-phone-link {
  display: inline-flex;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 1.155rem;
  transition: transform 0.22s ease;
}

.fulfillment-jobs-result-phone-link:hover {
  text-decoration: none;
}

.fulfillment-jobs-result-phone-link:hover .fulfillment-jobs-result-phone-frame {
  border-color: #4a4a52;
  box-shadow:
    0 16px 32px rgba(15, 17, 17, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.fulfillment-jobs-result-phone-link:focus {
  outline: none;
}

.fulfillment-jobs-result-phone-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | iPhone-Proportionen 375:812 für Phone-Frame */
.fulfillment-jobs-result-phone-frame {
  position: relative;
  width: 8.05rem;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0.28rem 0.245rem 0.42rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #2b2b2f 0%, #111114 55%, #1d1d22 100%);
  border: 2px solid #3a3a40;
  box-shadow:
    0 14px 28px rgba(15, 17, 17, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.fulfillment-jobs-result-phone-notch {
  position: absolute;
  top: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 0.294rem;
  border-radius: 999px;
  background: #0a0a0c;
  z-index: 2;
}

.fulfillment-jobs-result-phone-screen {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 0.84rem;
  background: #0a0a0c;
  width: 100%;
  /* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | iPhone-Screen-Proportion 375:812 */
  aspect-ratio: 375 / 812;
}

.fulfillment-jobs-result-phone-image-skeleton {
  grid-area: 1 / 1;
  width: 100%;
  /* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | iPhone-Screen-Proportion 375:812 */
  aspect-ratio: 375 / 812;
  z-index: 1;
  background: linear-gradient(
    110deg,
    #141418 0%,
    #1e1e24 38%,
    #2c2c34 50%,
    #1e1e24 62%,
    #141418 100%
  );
  background-size: 220% 100%;
  animation: fulfillment-jobs-phone-image-shimmer 1.35s ease-in-out infinite;
  transition: opacity 0.35s ease;
}

/* Änderungsprotokoll: 2026-07-08 | user-request | @skill-css-rules, @skill-change-provenance | Ladezustand is-image-loading für async Lazy Loading */
.fulfillment-jobs-result-phone-screen.is-image-loading .fulfillment-jobs-result-phone-image-skeleton {
  opacity: 1;
}

.fulfillment-jobs-result-phone-screen.is-image-loaded .fulfillment-jobs-result-phone-image-skeleton {
  opacity: 0;
  pointer-events: none;
}

.fulfillment-jobs-result-phone-screen.is-image-error .fulfillment-jobs-result-phone-image-skeleton {
  animation: none;
  background: #141418;
}

.fulfillment-jobs-result-phone-image {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fulfillment-jobs-result-phone-screen.is-image-loaded .fulfillment-jobs-result-phone-image {
  opacity: 1;
  transform: scale(1);
}

@keyframes fulfillment-jobs-phone-image-shimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

.fulfillment-jobs-result-phone-home-indicator {
  width: 34%;
  height: 0.154rem;
  margin: 0.315rem auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.fulfillment-jobs-result-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.fulfillment-jobs-result-card:hover {
  border-color: var(--color-primary-soft-border);
  box-shadow: var(--shadow-md), 0 12px 32px rgba(15, 17, 17, 0.06);
  transform: translateY(-1px);
}

.fulfillment-jobs-result-card:hover::before {
  opacity: 1;
}

/* Änderungsprotokoll: 2026-07-07 | parent-agent | @skill-css-rules | Firmenname als hochwertiger Karten-Titel mit Akzentlinie */
.fulfillment-jobs-result-name {
  position: relative;
  width: 100%;
  margin: 0 0 0.625rem;
  padding: 0 0 0.8125rem;
  border-bottom: none;
  color: var(--color-headline);
  font-size: clamp(1.0625rem, 0.5vw + 0.95rem, 1.3125rem);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.028em;
  line-height: 1.2;
  text-wrap: balance;
}

.fulfillment-jobs-result-name::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--color-border) 0%,
    rgba(213, 217, 217, 0.35) 72%,
    transparent 100%
  );
}

.fulfillment-jobs-result-name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 0.1875rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  box-shadow: 0 1px 4px rgba(255, 153, 0, 0.28);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.fulfillment-jobs-result-card:hover .fulfillment-jobs-result-name::after {
  width: 3.75rem;
}

.fulfillment-jobs-result-name-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  max-width: 100%;
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: color 0.22s ease;
}

.fulfillment-jobs-result-name-link::after {
  content: '';
  flex-shrink: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: currentColor;
  opacity: 0.45;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.fulfillment-jobs-result-name-link:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

.fulfillment-jobs-result-name-link:hover::after {
  background-color: var(--color-primary);
  opacity: 0.9;
  transform: translate(1px, -1px);
}

@media (min-width: 1024px) {
  .fulfillment-jobs-result-name {
    font-size: clamp(1.125rem, 0.35vw + 1rem, 1.375rem);
    letter-spacing: -0.032em;
    line-height: 1.18;
    padding-bottom: 0.875rem;
  }

  .fulfillment-jobs-result-name::after {
    width: 3.25rem;
    height: 0.2rem;
  }

  .fulfillment-jobs-result-card:hover .fulfillment-jobs-result-name::after {
    width: 4.25rem;
  }
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Adresse mit Standort-Icon */
.fulfillment-jobs-result-address {
  margin-top: 0.75rem;
  margin-bottom: 0;
  width: 100%;
}

.fulfillment-jobs-result-address-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.4375rem;
  max-width: 100%;
  font-size: var(--font-size-sm);
  color: var(--color-info);
  text-decoration: none;
  line-height: var(--line-height-normal);
  transition: color 0.2s ease;
}

.fulfillment-jobs-result-address-link::before {
  content: '';
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.fulfillment-jobs-result-address-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Lead-Text statt klassischer Beschreibung */
.fulfillment-jobs-result-description,
.fulfillment-jobs-result-lead {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Gefunden-am dezent und kursiv */
.fulfillment-jobs-result-found-at {
  margin-top: 0.625rem;
  margin-bottom: 0;
  width: 100%;
  font-size: var(--font-size-xs);
  font-style: italic;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-muted);
  opacity: 0.72;
  line-height: 1.45;
}

.fulfillment-jobs-result-found-at .fulfillment-jobs-result-meta-label {
  font-weight: var(--font-weight-normal);
  text-transform: none;
  letter-spacing: 0;
}

/* Änderungsprotokoll: 2026-07-08 | parent-agent | @skill-css-rules, @skill-change-provenance | Highlight-Badges: Text bleibt im Badge-Hintergrund */
.fulfillment-jobs-result-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.875rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.fulfillment-jobs-result-highlight {
  display: inline-block;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  line-height: 1.35;
  border-radius: 0.625rem;
  padding: 0.3125rem 0.75rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fulfillment-jobs-result-highlight-experience {
  flex: 1 1 100%;
  line-height: 1.5;
}

.fulfillment-jobs-result-highlight-price {
  color: var(--color-success-text);
  background-color: var(--color-success-bg);
  border: 1px solid var(--color-success-border);
}

.fulfillment-jobs-result-highlight-warehouse,
.fulfillment-jobs-result-highlight-experience {
  color: var(--color-text);
  background-color: var(--color-primary-soft-bg);
  border: 1px solid var(--color-border);
}

.fulfillment-jobs-result-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  width: 100%;
}

.fulfillment-jobs-result-tag {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  background-color: transparent;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.1875rem 0.5625rem;
  line-height: 1.35;
  white-space: nowrap;
}

.fulfillment-jobs-result-tag-carrier {
  color: var(--color-info);
  border-color: rgba(59, 130, 246, 0.25);
}

.fulfillment-jobs-result-tag-marketplace {
  color: var(--color-primary);
  border-color: var(--color-primary-soft-border);
}

.fulfillment-jobs-result-tag-region {
  font-style: italic;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Meta-Zeile mit Badges */
.fulfillment-jobs-result-meta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--color-border);
  width: 100%;
  max-width: 100%;
}

.fulfillment-jobs-result-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem 0.625rem;
  width: 100%;
  min-width: 0;
}

.fulfillment-jobs-result-meta-row-orders-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.fulfillment-jobs-result-meta-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: var(--line-height-normal);
}

.fulfillment-jobs-result-meta-badges {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  max-width: 100%;
}

.fulfillment-jobs-result-meta-badges .fulfillment-jobs-result-meta-value {
  margin-right: 0;
}

.fulfillment-jobs-result-meta-value {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  background-color: var(--color-primary-soft-bg);
  border: 1px solid var(--color-primary-soft-border);
  border-radius: 999px;
  padding: 0.2rem 0.625rem;
  line-height: 1.35;
  white-space: nowrap;
}

/* Änderungsprotokoll: 2026-07-08 | user-request | @skill-css-rules | Langer Mindestvolumen-Text in eigener Zeile */
.fulfillment-jobs-result-meta-value-text {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: 1.5;
  white-space: normal;
  overflow-wrap: anywhere;
}

/* .fulfillment-jobs-result-actions | Änderungsprotokoll: 2026-07-13 | parent-agent | @skill-css-rules, @skill-change-provenance | Merken-Button in Aktionszeile neben Zur Stelle */
.fulfillment-jobs-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  margin-top: 0.125rem;
  padding-top: 0;
  border-top: none;
  width: 100%;
}

/* .fulfillment-jobs-result-more-button | Änderungsprotokoll: 2026-07-08 | subagent-update-screen | @skill-css-rules, @skill-change-provenance | Mehr-Button breiter und mittig mit hochwertiger Wirkung */
.fulfillment-jobs-result-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.75rem;
  min-height: 2.375rem;
  padding: 0.4375rem 1.25rem;
  border-radius: 0.625rem;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
  text-align: center;
}

/* .fulfillment-jobs-result-card.is-expanded | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Aufgeklappte Karte mit hochwertigem Kontrast und Tiefe */
.fulfillment-jobs-result-card.is-expanded {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-primary-soft-bg) 88%, var(--color-surface) 12%) 0%,
    var(--color-surface) 100%
  );
  border-color: var(--color-primary-soft-border);
  box-shadow: var(--shadow-md), 0 0 0 1px color-mix(in srgb, var(--color-primary-soft-border) 75%, transparent);
}

/* .fulfillment-jobs-result-detail-panel | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Detail-Panel mit klarer Trennung und Kartenoptik */
.fulfillment-jobs-result-detail-panel {
  grid-column: 1 / -1;
  margin-top: 0;
  padding: 0.875rem 1rem 0.25rem;
  width: 100%;
  border-radius: 0.75rem;
  background-color: color-mix(in srgb, var(--color-surface) 90%, var(--color-primary-soft-bg) 10%);
  border: 1px solid color-mix(in srgb, var(--color-border) 70%, var(--color-primary-soft-border) 30%);
}

/* .fulfillment-jobs-result-detail-panel:not([hidden]) | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Sichtbares Panel mit Abstand und akzentuierter Oberkante */
.fulfillment-jobs-result-detail-panel:not([hidden]) {
  border-top: 1px solid color-mix(in srgb, var(--color-primary-soft-border) 75%, var(--color-border) 25%);
  margin-top: 0.75rem;
  padding-top: 1rem;
}

/* .fulfillment-jobs-result-detail-loading | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Lade- und Leerzustand hochwertiger und besser lesbar */
.fulfillment-jobs-result-detail-loading,
.fulfillment-jobs-result-detail-empty {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* .fulfillment-jobs-result-detail-section | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Detail-Sektionen als abgesetzte Blöcke */
.fulfillment-jobs-result-detail-section {
  margin-bottom: 0.875rem;
  padding: 0.75rem 0.875rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
}

.fulfillment-jobs-result-detail-section:last-child {
  margin-bottom: 0.25rem;
}

/* .fulfillment-jobs-result-detail-section-title | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Detail-Titel visuell hervorgehoben */
.fulfillment-jobs-result-detail-section-title {
  margin: 0 0 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-headline);
  letter-spacing: 0.01em;
}

/* .fulfillment-jobs-result-detail-fields | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Label/Value-Gitter mit ruhigerem Rhythmus */
.fulfillment-jobs-result-detail-fields {
  display: grid;
  grid-template-columns: minmax(7rem, 11rem) 1fr;
  gap: 0.4375rem 1rem;
  margin: 0;
}

/* .fulfillment-jobs-result-detail-field-label | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Label-Kontrast erhöht */
.fulfillment-jobs-result-detail-field-label {
  margin: 0;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

/* .fulfillment-jobs-result-detail-field-value | Änderungsprotokoll: 2026-07-08 | cursor-agent | @skill-css-rules, @skill-change-provenance | Werte besser lesbar mit höherem Kontrast */
.fulfillment-jobs-result-detail-field-value {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-headline);
  line-height: 1.5;
}

.fulfillment-jobs-filter-backdrop {
  display: none;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Leerer Zustand ohne Treffer */
.fulfillment-jobs-no-results {
  margin: 0;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: var(--font-size-base);
  line-height: 1.55;
  color: var(--color-text-muted);
  background-color: var(--color-surface);
  border: 1px dashed var(--color-border);
  border-radius: 0.9rem;
}

/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Infinite-Scroll-Ladehinweis */
/* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Infinite-Scroll-Sentinel und Loader */
.fulfillment-jobs-infinite-scroll-sentinel {
  width: 100%;
  height: 1px;
  margin-top: 0.5rem;
  pointer-events: none;
}

.fulfillment-jobs-infinite-scroll-loader {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  text-align: center;
  padding: 1.25rem 1rem;
  margin-top: 0.5rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
}

.fulfillment-jobs-infinite-scroll-loader.is-loading {
  display: flex;
}

.fulfillment-jobs-infinite-scroll-loader.is-loading::before {
  content: '';
  width: 1.125rem;
  height: 1.125rem;
  border: 2px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: fulfillment-jobs-loader-spin 0.7s linear infinite;
}

@keyframes fulfillment-jobs-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .fulfillment-jobs-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  /* Änderungsprotokoll: 2026-07-07 | parent-agent | @skill-css-rules | Schmalere Filter-Sidebar, kompaktere Select-Felder */
  .fulfillment-jobs-filters {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 1rem;
    align-self: flex-start;
    overflow: visible;
  }

  .fulfillment-jobs-filter-form {
    overflow: visible;
    max-height: none;
    padding-right: 0;
  }

  .fulfillment-jobs-toolbar {
    display: none;
  }

  .fulfillment-jobs-result-card-content-row:has(.fulfillment-jobs-result-card-preview) {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 8.575rem;
    column-gap: 1.25rem;
    align-items: start;
  }

  /* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Phone-Preview höher am Titel/Lead ausrichten */
  .fulfillment-jobs-result-card-preview {
    grid-column: 2;
    grid-row: 1;
    width: 8.575rem;
    max-width: 8.575rem;
    justify-content: flex-end;
    justify-self: end;
    align-self: start;
    margin-top: -1.25rem;
    padding-top: 0;
    position: relative;
    z-index: 1;
  }

  .fulfillment-jobs-result-meta-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem 1rem;
    align-items: start;
  }

  .fulfillment-jobs-result-meta-row-orders-text {
    grid-template-columns: 1fr;
  }

  .fulfillment-jobs-result-meta-label {
    white-space: nowrap;
  }

  .fulfillment-jobs-result-meta-badges,
  .fulfillment-jobs-result-meta-value,
  .fulfillment-jobs-result-meta-value-text {
    margin-right: 0;
    justify-self: start;
    max-width: 100%;
  }

  .fulfillment-jobs-result-phone-frame {
    width: 8.05rem;
    min-width: 8.05rem;
    max-width: 8.05rem;
  }
}

@media (min-width: 1024px) {
  .fulfillment-jobs-result-meta-row-services {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem 1.25rem;
  }
}

@media (max-width: 767px) {
  /* Änderungsprotokoll: 2026-07-06 | parent-agent | @skill-css-rules | Mobile Drawer mit Schatten */
  .fulfillment-jobs-filters {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(92vw, 360px);
    z-index: 100;
    transform: translateX(-110%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-radius: 0;
    border-left: none;
    border-top: none;
    border-bottom: none;
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1rem 1.5rem;
  }

  .fulfillment-jobs-filters.is-open {
    transform: translateX(0);
  }

  /* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Sticky Filter-Header mit Schließen-Button auf Mobile */
  .fulfillment-jobs-filters.is-open .fulfillment-jobs-filter-header {
    position: sticky;
    top: 0;
    z-index: 2;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    background-color: var(--color-surface);
    box-shadow: 0 1px 0 var(--color-border);
  }

  .fulfillment-jobs-filter-close {
    display: inline-flex;
  }

  .fulfillment-jobs-filter-backdrop.is-visible {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 17, 17, 0.42);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 90;
  }
}
/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | View-Tabs rechtsbündig (Fallback ohne Header-Zeile) */
#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-view-tabs-bar,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-view-tabs-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | View-Tabs breiter, drei gleich breite Spalten fuer Merkliste */
#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-nav,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-nav {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: stretch;
  gap: 0.125rem;
  width: var(--fulfillment-jobs-view-tabs-nav-width, 26rem);
  min-width: var(--fulfillment-jobs-view-tabs-nav-width, 26rem);
  flex-shrink: 0;
  max-width: 100%;
  margin: 0;
  padding: 0.1875rem;
  border: 1px solid color-mix(in srgb, var(--color-border) 70%, var(--color-primary-soft-border) 30%);
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-background) 55%, var(--color-surface) 45%);
  box-shadow: inset 0 1px 2px color-mix(in srgb, var(--color-secondary) 8%, transparent);
}

/* Änderungsprotokoll: 2026-07-13 | cursor-agent | @skill-css-rules, @skill-change-provenance | Schalter-Optionen kompakt mit klarer Inaktiv-Optik */
#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  flex: 1 1 0;
  min-width: 0;
  min-height: 2rem;
  margin: 0;
  padding: 0.3125rem 0.625rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface) 82%, var(--color-background) 18%);
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-list::before,
#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-globe::before,
#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar #fulfillment-jobs-view-tab-merkliste::before,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-list::before,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-globe::before,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar #fulfillment-jobs-view-tab-merkliste::before {
  content: '';
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  background-color: currentColor;
  opacity: 0.82;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: opacity 0.18s ease;
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-list::before,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-list::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'%3E%3Cline x1='8' y1='6' x2='21' y2='6'/%3E%3Cline x1='8' y1='12' x2='21' y2='12'/%3E%3Cline x1='8' y1='18' x2='21' y2='18'/%3E%3Cline x1='3' y1='6' x2='3.01' y2='6'/%3E%3Cline x1='3' y1='12' x2='3.01' y2='12'/%3E%3Cline x1='3' y1='18' x2='3.01' y2='18'/%3E%3C/svg%3E");
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-globe::before,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar #fulfillment-center-view-tab-globe::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar #fulfillment-jobs-view-tab-merkliste::before,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar #fulfillment-jobs-view-tab-merkliste::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Merkliste-Tab gleiche Spaltenbreite wie Liste und Globus */
#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link.fulfillment-jobs-view-tab-merkliste,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link.fulfillment-jobs-view-tab-merkliste {
  gap: 0.375rem;
  flex: 1 1 0;
  min-width: 0;
}

.fulfillment-jobs-view-tab-merkliste-label {
  flex-shrink: 0;
  min-width: 0;
  line-height: 1.2;
}

.fulfillment-jobs-view-tab-merkliste-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 1.25rem;
  height: 1.25rem;
  margin-inline-start: 0;
  padding: 0 0.375rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-primary) 88%, var(--color-secondary) 12%);
  color: var(--color-text-inverse);
  font-size: 0.6875rem;
  font-weight: var(--font-weight-bold);
  line-height: 1;
}

.fulfillment-center-suche-sort-link-active .fulfillment-jobs-view-tab-merkliste-count {
  background: color-mix(in srgb, var(--color-secondary) 80%, var(--color-primary) 20%);
  color: var(--color-text-inverse);
}

.fulfillment-jobs-view-tab-merkliste-count[hidden] {
  display: none;
}

/* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | Merkliste-Tab deaktiviert ohne gemerkte Jobs */
.fulfillment-jobs-view-tab-merkliste-disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}

.fulfillment-jobs-view-tab-merkliste-disabled::before {
  opacity: 0.55;
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link:hover,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link:hover {
  background: color-mix(in srgb, var(--color-primary-soft-bg) 55%, var(--color-surface) 45%);
  border-color: color-mix(in srgb, var(--color-primary-soft-border) 65%, transparent);
  color: var(--color-secondary);
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link:hover::before,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link:hover::before {
  opacity: 1;
}

/* Änderungsprotokoll: 2026-07-13 | cursor-agent | @skill-css-rules, @skill-change-provenance | Aktive View-Tab-Schrift weiss via --color-text-inverse */
#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active {
  border-color: color-mix(in srgb, var(--color-primary) 55%, var(--color-primary-soft-border) 45%);
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  font-weight: var(--font-weight-bold);
  box-shadow:
    var(--shadow-glow),
    inset 0 1px 0 color-mix(in srgb, var(--color-text-inverse) 35%, transparent);
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active::before,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active::before {
  opacity: 1;
}

#fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active:hover,
#fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link-active:hover {
  color: var(--color-text-inverse);
  border-color: color-mix(in srgb, var(--color-primary) 65%, var(--color-primary-soft-border) 35%);
  background: linear-gradient(135deg, var(--color-primary) 0%, #ffb84d 100%);
  box-shadow:
    0 3px 12px color-mix(in srgb, var(--color-primary) 38%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--color-text-inverse) 35%, transparent);
}

@media (max-width: 575px) {
  #fulfillment-jobs-results .fulfillment-jobs-results-header-row,
  #fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row {
    flex-wrap: wrap;
    align-items: stretch;
  }

  /* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | View-Tabs-Toolbar als Scroll-Viewport auf Mobile */
  #fulfillment-jobs-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar,
  #fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    overflow: hidden;
  }

  /* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | View-Tabs-Bar horizontal scrollbar auf Mobile */
  #fulfillment-jobs-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-view-tabs-bar,
  #fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-view-tabs-bar {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  /* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | View-Tabs-Nav volle Breite, horizontal scrollbar */
  #fulfillment-jobs-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-nav,
  #fulfillment-jobs-merkliste-results .fulfillment-jobs-results-header-row .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-nav {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: auto;
    min-width: var(--fulfillment-jobs-view-tabs-nav-width);
    max-width: none;
  }

  /* Änderungsprotokoll: 2026-07-13 | user-request | @skill-css-rules, @skill-change-provenance | View-Tab-Links nicht schrumpfen bei horizontalem Scroll */
  #fulfillment-jobs-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link,
  #fulfillment-jobs-merkliste-results .fulfillment-center-view-tabs-toolbar .fulfillment-center-suche-sort-link {
    flex: 0 0 auto;
    min-width: fit-content;
    padding-inline: 0.5rem;
  }
}

/* Änderungsprotokoll: 2026-07-13 | parent-agent | @skill-css-rules | Merkliste-Button in Aktionszeile */
.fulfillment-jobs-result-merkliste-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.375rem;
  padding: 0.4375rem 1.125rem;
  border: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
  background: color-mix(in srgb, var(--color-primary) 8%, var(--color-surface));
  color: var(--color-text-primary);
  border-radius: 0.625rem;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.fulfillment-jobs-result-merkliste-button.is-on-merkliste {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 18%, var(--color-surface));
  color: var(--color-primary);
}

.fulfillment-jobs-result-merkliste-button.is-loading {
  opacity: 0.65;
  cursor: wait;
}

.fulfillment-jobs-result-card.is-on-merkliste {
  border-color: color-mix(in srgb, var(--color-primary) 45%, var(--color-border));
}

/* Änderungsprotokoll: 2026-07-13 | parent-agent | @skill-change-provenance | Header-Merkliste-Link entfernt */
#fulfillment-jobs #fulfillment-jobs-headline-wrapper {
  margin-bottom: 1.5rem;
}
