.web-list-panel {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  background: #FFFFFF;
  box-sizing: border-box;
}

.web-list-panel__list {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: var(--web-list-panel-gap, 4px);
}

.web-list-panel__item {
  min-width: 0;
  min-height: 0;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.web-list-panel__item:focus {
  outline: 1px solid #215C98;
  outline-offset: -2px;
}

.web-list-panel__item.is-selected {
  background: #EEF6FF;
}

.web-list-panel__empty {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 8px;
  color: #64748B;
  font-size: 13px;
  box-sizing: border-box;
}

.web-list-panel__default-item {
  min-width: 0;
  min-height: 0;
  padding: 8px;
  border: 1px solid #A6C9EC;
  background: #FFFFFF;
  color: #215C98;
  box-sizing: border-box;
}
