.execution-asset-catalog-entry {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 36px minmax(0,1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 7px 9px;
  border: 1px solid rgba(245,198,93,.16);
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(245,198,93,.055), rgba(255,255,255,.02));
  color: #f4f6fa;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.execution-asset-catalog-entry__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,198,93,.24);
  border-radius: 11px;
  color: var(--gold, #f5c65d);
  background: rgba(245,198,93,.08);
}
.execution-asset-catalog-entry__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.execution-asset-catalog-entry__copy { min-width: 0; display: grid; gap: 2px; }
.execution-asset-catalog-entry__copy strong { font-size: .78rem; line-height: 1.1; }
.execution-asset-catalog-entry__copy span { overflow: hidden; color: var(--text-muted, #8c96a8); font-size: .66rem; text-overflow: ellipsis; white-space: nowrap; }
.execution-asset-catalog-entry__action { color: var(--gold, #f5c65d); font-size: .67rem; font-weight: 800; white-space: nowrap; }
.execution-asset-catalog-entry:hover,
.execution-asset-catalog-entry:focus-visible { outline: none; border-color: rgba(245,198,93,.34); background: linear-gradient(90deg, rgba(245,198,93,.09), rgba(255,255,255,.025)); }
.execution-asset-catalog-entry:active { transform: scale(.992); }

html.disciply-asset-catalog-overlay-open,
html.disciply-asset-catalog-overlay-open body {
  overflow: hidden !important;
  overscroll-behavior: none !important;
}

.execution-asset-catalog-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.execution-asset-catalog-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.execution-asset-catalog-overlay__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 3, 9, .76);
  backdrop-filter: blur(15px) saturate(105%);
  -webkit-backdrop-filter: blur(15px) saturate(105%);
}
.execution-asset-catalog-overlay__panel {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 28px));
  height: min(93dvh, 920px);
  min-height: 520px;
  display: grid;
  grid-template-rows: 62px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(245, 198, 93, .2);
  border-radius: 28px;
  background: #05070c;
  box-shadow:
    0 32px 90px rgba(0,0,0,.58),
    inset 0 1px rgba(255,255,255,.035),
    0 0 0 1px rgba(255,255,255,.02);
  transform: translateY(10px) scale(.99);
  transition: transform .2s cubic-bezier(.2,.75,.2,1);
}
.execution-asset-catalog-overlay.is-open .execution-asset-catalog-overlay__panel {
  transform: translateY(0) scale(1);
}
.execution-asset-catalog-overlay__header {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,.075);
  background:
    radial-gradient(320px 90px at 80% 0%, rgba(245,198,93,.09), transparent 72%),
    linear-gradient(180deg, rgba(16,21,31,.98), rgba(9,13,20,.98));
}
.execution-asset-catalog-overlay__header > div:first-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.execution-asset-catalog-overlay__header span {
  color: #f5c65d;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
}
.execution-asset-catalog-overlay__header strong {
  overflow: hidden;
  color: #f5f7fb;
  font-size: 15px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.execution-asset-catalog-overlay__header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.execution-asset-catalog-overlay__header-actions small {
  max-width: 230px;
  overflow: hidden;
  color: #7fe3b4;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.execution-asset-catalog-overlay__header-actions button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  color: #e8ebf1;
  background: rgba(255,255,255,.035);
  -webkit-tap-highlight-color: transparent;
}
.execution-asset-catalog-overlay__header-actions button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.execution-asset-catalog-overlay__body {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #05070c;
}
.execution-asset-catalog-overlay__frame {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #05070c;
}
.execution-asset-catalog-overlay__loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 11px;
  color: #9aa4b5;
  background: #05070c;
  transition: opacity .2s ease, visibility .2s ease;
}
.execution-asset-catalog-overlay__loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.execution-asset-catalog-overlay__loading i {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(245,198,93,.16);
  border-top-color: #f5c65d;
  border-radius: 50%;
  animation: executionCatalogSpin .8s linear infinite;
}
.execution-asset-catalog-overlay__loading span {
  color: #a0a9b8;
  font-size: 11px;
  font-weight: 700;
}

@keyframes executionCatalogSpin { to { transform: rotate(360deg); } }

@media (max-width: 760px) {
  .execution-asset-catalog-overlay {
    padding: max(6px, env(safe-area-inset-top)) 5px max(6px, env(safe-area-inset-bottom));
    align-items: stretch;
  }
  .execution-asset-catalog-overlay__panel {
    width: 100%;
    height: 100%;
    min-height: 0;
    grid-template-rows: 56px minmax(0, 1fr);
    border-radius: 24px;
  }
  .execution-asset-catalog-overlay__header {
    padding: 8px 8px 8px 14px;
    gap: 8px;
  }
  .execution-asset-catalog-overlay__header span { font-size: 8px; }
  .execution-asset-catalog-overlay__header strong { font-size: 13px; }
  .execution-asset-catalog-overlay__header-actions { gap: 7px; }
  .execution-asset-catalog-overlay__header-actions small {
    max-width: 124px;
    font-size: 8px;
  }
  .execution-asset-catalog-overlay__header-actions button {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
}

@media (max-width: 430px) {
  .execution-asset-catalog-entry { min-height: 44px; grid-template-columns: 32px minmax(0,1fr) auto; gap: 8px; padding: 6px 8px; border-radius: 13px; }
  .execution-asset-catalog-entry__icon { width: 32px; height: 32px; border-radius: 10px; }
  .execution-asset-catalog-entry__copy strong { font-size: .72rem; }
  .execution-asset-catalog-entry__copy span { font-size: .61rem; }
  .execution-asset-catalog-entry__action { font-size: .62rem; }
  .execution-asset-catalog-overlay__header-actions small { display: none; }
}
