

/* ── Exception heading ───────────────────────────────────────────────────── */
.exception-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 0;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}

  .back-button:hover {
    text-decoration: underline;
  }

.exception-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

/* ── Toolbar row (Figma node 4231:102306) ────────────────────────────────── */
.er-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  min-height: 53px; /* matches Figma 37px content + 8px top/bottom padding */
  gap: 16px;
}

/* Left: product count label */
.er-product-count {
  font-size: 20px;
  color: #111827;
  white-space: nowrap;
}

  .er-product-count strong {
    font-weight: 700;
  }

/* Right: actions row */
.er-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ── Search wrap: input + clear button ───────────────────────────────────── */
.er-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

/* RadzenTextBox root */
.er-search-input {
  width: 300px !important;
  height: 37px !important;
  border-radius: 4px 0 0 4px !important;
  border-right: none !important;
}

/* Clear button — sits inside the input on the right */
.er-search-clear {
  position: absolute !important;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 !important;
  min-width: unset !important;
  width: 24px !important;
  height: 24px !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  z-index: 1;
}

  .er-search-clear:hover {
    background: transparent !important;
  }

/* ── Search submit button ────────────────────────────────────────────────── */
/* RadzenButton root */
.er-search-submit {
  width: 36px !important;
  height: 37px !important;
  min-width: unset !important;
  padding: 0 !important;
  border-radius: 0 4px 4px 0 !important;
  flex-shrink: 0 !important;
}

/* ── No results state ─────────────────────────────────────────────────────── */
.er-no-results {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  padding-top: 48px;
  width: 100%;
  min-height: 400px;
  text-align: center;
}

.er-no-results-title { 
  /* Heading/07 */
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
}

.er-no-results-subtitle {
  text-align: center;
  /* Body/02 - Compact */  
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 17.5px; /* 125% */
  letter-spacing: 0.16px;
}
