.plugin-filter-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.plugin-filter-field {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.plugin-filter-field > span,
.plugin-filter-range-header span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
}

.plugin-filter-field select {
  width: 100%;
  min-width: 0;
}

.plugin-filter-range-field {
  align-content: start;
  grid-column: 1 / -1;
  padding: 0px 5px;
}

.plugin-filter-range-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}

.plugin-filter-range-header span:first-child {
  flex: 0 0 auto;
}

.plugin-filter-range-header span:last-child {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 750;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plugin-filter-range-control {
  position: relative;
  height: 22px;
  min-width: 0;
}

.plugin-filter-range-rail,
.plugin-filter-range-track {
  position: absolute;
  top: 9px;
  height: 4px;
  border-radius: 999px;
  pointer-events: none;
}

.plugin-filter-range-rail {
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.14);
}

.plugin-filter-range-track {
  left: 0;
  width: 100%;
  background: rgb(39, 88, 208);
}

.plugin-filter-range-control input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.plugin-filter-range-control input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
}

.plugin-filter-range-control input[type="range"]::-webkit-slider-thumb {
  width: 14px;
  height: 14px;
  margin-top: -5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgb(39, 88, 208);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
}

.plugin-filter-range-control input[type="range"]::-moz-range-track {
  height: 4px;
  border: 0;
  background: transparent;
}

.plugin-filter-range-control input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgb(39, 88, 208);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  pointer-events: auto;
}

body:not(.device-mobile) .right-panel #pluginFilterPanel:not(.collapsed):not([hidden]) {
  display: flex;
  flex-direction: column;
  flex: 1 1 420px;
  min-height: 600px;
  overflow: hidden;
}

body:not(.device-mobile) .right-panel #pluginFilterPanel:not(.collapsed):not([hidden]) > .group-content {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  width: 100%;
}

.plugin-filter-list {
  display: grid;
  gap: 8px;
  max-height: min(48vh, 420px);
  overflow: auto;
  padding-right: 2px;
  scrollbar-width: none;
}

.plugin-filter-list::-webkit-scrollbar {
  display: none;
}

body:not(.device-mobile) #pluginFilterPanel:not(.collapsed) .plugin-filter-list {
  flex: 1 1 auto;
  min-height: 220px;
  max-height: none;
}

.plugin-filter-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: stretch;
  gap: 9px;
  width: 100%;
  min-width: 0;
  padding: 8px;
  border: 0;
  border-radius: 10px;
  background: rgb(37, 37, 37);
  color: rgb(255, 255, 255);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s ease;
}

.plugin-filter-item:hover,
.plugin-filter-item:focus-visible,
.plugin-filter-item[aria-disabled="true"]:hover {
  background: rgb(50, 50, 50);
  outline: none;
}

.plugin-filter-item[aria-disabled="true"] {
  cursor: not-allowed;
}

.plugin-filter-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 100%;
  min-height: 52px;
  overflow: hidden;
  border-radius: 8px;
  background: rgb(18, 18, 18);
  color: rgba(255, 255, 255, 0.56);
  font-size: 1rem;
  font-weight: 800;
}

.plugin-filter-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plugin-filter-item-details {
  display: grid;
  align-content: center;
  gap: 3px;
  min-width: 0;
}

.plugin-filter-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.plugin-filter-item-top strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plugin-filter-status {
  flex: 0 0 auto;
  max-width: 45%;
  overflow: hidden;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(20, 118, 255, 0.18);
  color: rgb(127, 180, 255);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plugin-filter-item-meta,
.plugin-filter-item small {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plugin-filter-item-fields {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.plugin-filter-item-fields span {
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 650;
  line-height: 1.18;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#configuratorPluginModal .modal-actions {
  flex: 0 0 auto;
  margin: 0;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#configuratorPluginModal .modal-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 104px;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgb(30, 30, 30);
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: none;
}

#configuratorPluginModal .modal-actions button:hover,
#configuratorPluginModal .modal-actions button:focus-visible {
  background: rgb(38, 38, 38);
  outline: none;
}

#configuratorPluginModal .modal-actions .primary {
  background: rgb(39, 88, 208);
  color: rgb(255, 255, 255);
}

#configuratorPluginModal .modal-actions .primary:hover,
#configuratorPluginModal .modal-actions .primary:focus-visible {
  background: rgb(35, 79, 192);
}

#configuratorPluginModal .modal-actions .primary:disabled {
  background: rgb(30, 30, 30);
  color: rgba(255, 255, 255, 0.48);
  cursor: not-allowed;
}

@media (max-width: 760px) {
  #configuratorPluginModal .configurator-plugin-modal {
    min-height: min(620px, calc(100dvh - 24px));
    max-height: calc(100dvh - 24px);
    width: min(100%, calc(100vw - 24px));
  }

  .configurator-plugin-modal-body {
    grid-template-columns: 1fr;
    grid-template-rows: 180px minmax(0, 1fr);
  }

  .configurator-plugin-catalog {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* Configurator plugin modal and panel */
#configuratorPluginModal.modal-backdrop {
  background: rgba(6, 10, 16, 0.62);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

#configuratorPluginModal .configurator-plugin-modal {
  display: flex;
  flex-direction: column;
  width: min(920px, calc(100vw - 32px));
  min-height: min(620px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  overflow: hidden;
  background: rgb(12, 12, 12);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  color: rgb(255, 255, 255);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

#configuratorPluginModal .modal-header {
  flex: 0 0 auto;
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#configuratorPluginModal .modal-header h3 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.2;
}

#configuratorPluginModal .modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(30, 30, 30);
  color: rgb(255, 255, 255);
  line-height: 0;
}

#configuratorPluginModal .modal-close svg {
  display: block;
  width: 18px;
  height: 18px;
}

#configuratorPluginModal .modal-close:hover,
#configuratorPluginModal .modal-close:focus-visible {
  background: rgb(38, 38, 38);
  outline: none;
}

.configurator-plugin-modal-body {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
  background: rgb(12, 12, 12);
}

.configurator-plugin-catalog,
.configurator-plugin-detail {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  scrollbar-width: none;
}

.configurator-plugin-catalog::-webkit-scrollbar,
.configurator-plugin-detail::-webkit-scrollbar {
  display: none;
}

.configurator-plugin-catalog {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgb(18, 18, 18);
}

.configurator-plugin-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: rgb(12, 12, 12);
}

.configurator-plugin-catalog-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgb(24, 24, 24);
  color: rgb(255, 255, 255);
  cursor: pointer;
  text-align: left;
}

.configurator-plugin-catalog-item:hover,
.configurator-plugin-catalog-item:focus-visible,
.configurator-plugin-catalog-item[aria-pressed="true"] {
  border-color: rgba(39, 88, 208, 0.72);
  background: rgb(30, 30, 30);
  outline: none;
}

.configurator-plugin-catalog-item > span:first-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.configurator-plugin-catalog-item strong {
  overflow: hidden;
  color: rgb(255, 255, 255);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.configurator-plugin-catalog-item small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.configurator-plugin-badge {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

.configurator-plugin-detail-header {
  display: grid;
  gap: 8px;
}

.configurator-plugin-detail-header h4 {
  margin: 0;
  color: rgb(255, 255, 255);
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.2;
}

.configurator-plugin-detail-header p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
}

.configurator-plugin-mapping-header {
  margin-top: 2px;
  padding-top: 4px;
}

.configurator-plugin-mapping-header h4 {
  font-size: 0.94rem;
}

.configurator-plugin-targets {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.configurator-plugin-targets span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(39, 88, 208, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1;
}

.configurator-plugin-fields {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  min-width: 0;
}

.configurator-plugin-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.configurator-plugin-field span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 650;
}

.configurator-plugin-field input,
.configurator-plugin-field select,
.configurator-plugin-field textarea {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgb(22, 22, 22);
  color: rgba(255, 255, 255, 0.82);
  padding: 0 12px;
  color-scheme: dark;
}

.configurator-plugin-field textarea {
  min-height: 104px;
  padding: 10px 12px;
  resize: vertical;
  font:
    500 0.82rem/1.45 ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
}

.configurator-plugin-field input:disabled,
.configurator-plugin-field select:disabled,
.configurator-plugin-field textarea:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.configurator-plugin-test-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 520px;
}

.configurator-plugin-test-row span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 650;
}

.configurator-plugin-test-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgb(30, 30, 30);
  color: rgb(255, 255, 255);
  font-size: 0.82rem;
  font-weight: 700;
}

.configurator-plugin-test-btn:hover,
.configurator-plugin-test-btn:focus-visible {
  background: rgb(38, 38, 38);
  outline: none;
}

.configurator-plugin-test-btn:disabled {
  color: rgba(255, 255, 255, 0.42);
  cursor: not-allowed;
}

.configurator-plugin-response-section {
  display: grid;
  gap: 10px;
  max-width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.configurator-plugin-response-title,
.configurator-plugin-response-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
}

.configurator-plugin-response-label {
  color: rgba(255, 255, 255, 0.52);
}

.configurator-plugin-visual-map {
  display: grid;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.configurator-plugin-visual-map-header {
  display: grid;
  gap: 4px;
}

.configurator-plugin-visual-map-header.compact {
  margin-top: 2px;
}

.configurator-plugin-visual-map-header h4 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 800;
}

.configurator-plugin-visual-map-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  line-height: 1.45;
}

.configurator-plugin-visual-map-empty {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.4;
}

.configurator-plugin-bind-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.configurator-plugin-bind-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: rgb(0, 122, 255);
  color: rgb(255, 255, 255);
  font-size: 0.82rem;
  font-weight: 750;
}

.configurator-plugin-bind-btn:hover,
.configurator-plugin-bind-btn:focus-visible {
  background: rgb(24, 138, 255);
  outline: none;
}

.configurator-plugin-bind-btn:disabled {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  cursor: not-allowed;
}

.configurator-plugin-bind-message {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 650;
}

.configurator-plugin-bind-message[data-tone="success"] {
  color: rgba(210, 255, 226, 0.92);
}

.configurator-plugin-bind-message[data-tone="error"] {
  color: rgba(255, 218, 218, 0.94);
}

.configurator-plugin-advanced {
  max-width: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.configurator-plugin-advanced summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  cursor: pointer;
  list-style: none;
}

.configurator-plugin-advanced summary::-webkit-details-marker {
  display: none;
}

.configurator-plugin-advanced summary span:first-child {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.configurator-plugin-advanced summary strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.2;
}

.configurator-plugin-advanced summary small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.configurator-plugin-advanced-caret {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  transform: rotate(0deg);
  transition: transform 0.16s ease;
}

.configurator-plugin-advanced[open] .configurator-plugin-advanced-caret {
  transform: rotate(90deg);
}

.configurator-plugin-advanced .configurator-plugin-mapping-fields {
  max-width: none;
  padding: 0 12px 12px;
}

.configurator-plugin-test-result {
  max-width: 520px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.35;
}

.configurator-plugin-test-result[data-tone="success"] {
  background: rgba(39, 208, 120, 0.12);
  color: rgba(210, 255, 226, 0.92);
}

.configurator-plugin-test-result[data-tone="error"] {
  background: rgba(255, 88, 88, 0.12);
  color: rgba(255, 218, 218, 0.94);
}

.configurator-plugin-response-preview {
  max-width: 100%;
  max-height: 180px;
  margin: 0;
  padding: 12px;
  overflow: auto;
  border-radius: 10px;
  background: rgb(18, 18, 18);
  color: rgba(255, 255, 255, 0.72);
  font:
    500 0.76rem/1.45 ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
  white-space: pre-wrap;
}

.configurator-plugin-detail-empty,
.configurator-plugin-empty {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
}

.configurator-plugin-list {
  display: grid;
  gap: 8px;
  min-height: 32px;
}

.configurator-plugin-list-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 6px;
  border: 0;
  border-radius: 10px;
  background: rgb(30, 30, 30);
  color: rgb(255, 255, 255);
  text-align: left;
}

.configurator-plugin-list-open {
  display: grid;
  flex: 1 1 auto;
  gap: 3px;
  min-width: 0;
  min-height: 34px;
  padding: 2px 4px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.configurator-plugin-list-open:hover,
.configurator-plugin-list-open:focus-visible {
  outline: none;
}

.configurator-plugin-list-open strong {
  min-width: 0;
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.configurator-plugin-list-open span {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.configurator-plugin-list-menu-wrap {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.configurator-plugin-list-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgb(22, 22, 22);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.configurator-plugin-list-menu-toggle:hover,
.configurator-plugin-list-menu-toggle:focus-visible,
.configurator-plugin-list-menu-toggle[aria-expanded="true"] {
  background: rgb(38, 38, 38);
  color: rgb(255, 255, 255);
  outline: none;
}

.configurator-plugin-list-menu-toggle svg {
  display: block;
}

.configurator-plugin-list-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 9000;
  display: grid;
  min-width: 112px;
  padding: 5px;
  border-radius: 10px;
  background: rgb(18, 18, 18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.44);
}

.configurator-plugin-list-menu[hidden] {
  display: none;
}

.configurator-plugin-list-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgb(255, 255, 255);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.configurator-plugin-list-menu button:hover,
.configurator-plugin-list-menu button:focus-visible {
  background: rgb(32, 32, 32);
  outline: none;
}

.configurator-plugin-list-menu button.danger {
  color: rgb(255, 118, 118);
}

.configurator-plugin-list-menu button.danger:hover,
.configurator-plugin-list-menu button.danger:focus-visible {
  background: rgba(139, 35, 35, 0.28);
  color: rgb(255, 146, 146);
}
