.platform-popup-anchor {
  position: relative;
  z-index: 31;
}

.platform-popup-anchor.is-open {
  z-index: 120;
}

.platform-popup-dismiss-layer {
  position: fixed;
  inset: 0;
  background: transparent;
}

.platform-popup-surface {
  --platform-popup-font-size: 12px;
  --platform-popup-icon-size: 13px;
  --platform-popup-border: var(
    --tb-task-input-border,
    var(
      --tb-runner-input-border,
      linear-gradient(
        -10deg,
        rgba(200, 200, 200, 0.25),
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.15),
        rgba(255, 255, 255, 0.375)
      )
    )
  );
  position: absolute;
  z-index: 20;
  min-width: 240px;
  padding: var(--platform-popup-padding, 0) !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: var(--platform-popup-radius, 25px) !important;
  background: var(--platform-popup-background, rgba(30, 30, 30, 0.5)) !important;
  box-shadow: var(--platform-popup-shadow, 0 12px 30px rgba(0, 0, 0, 0.35)) !important;
  font-size: var(--platform-popup-font-size);
  line-height: 1.4;
  -webkit-backdrop-filter: var(--platform-popup-backdrop-filter, blur(5px)) !important;
  backdrop-filter: var(--platform-popup-backdrop-filter, blur(5px)) !important;
}

.platform-popup-surface :where(button, a, [role="button"], [role="menuitem"]) {
  font-size: var(--platform-popup-font-size);
}

.platform-popup-surface .tb-popup-label {
  font-size: var(--platform-popup-font-size) !important;
}

.platform-popup-surface .tb-popup-row {
  position: relative;
  z-index: 6;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.platform-popup-surface .tb-popup-row:hover:not(:disabled),
.platform-popup-surface .tb-popup-row:focus-visible,
.platform-popup-surface .tb-popup-row.selected,
.platform-popup-surface .tb-popup-row.is-selected {
  background: rgba(255, 255, 255, 0.1);
}

.platform-popup-surface .tb-popup-row:focus-visible {
  outline: none;
}

.platform-popup-surface .tb-popup-row:disabled {
  opacity: 0.45;
  cursor: default;
}

.platform-popup-surface .tb-popup-row:disabled:hover:not(.is-selected) {
  background: transparent;
}

.platform-popup-surface .tb-popup-check-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 var(--platform-popup-icon-size);
  width: var(--platform-popup-icon-size);
  height: var(--platform-popup-icon-size);
}

.platform-popup-surface :where(button, a, [role="button"], [role="menuitem"]) svg,
.platform-popup-surface :where(.tb-popup-icon, .tb-popup-chevron, .tb-popup-check) {
  width: var(--platform-popup-icon-size);
  height: var(--platform-popup-icon-size);
}

.platform-popup-surface.is-fixed {
  position: fixed;
}

.platform-popup-surface.is-portaled {
  z-index: var(--platform-popup-portal-z-index, 12060);
}

.platform-popup-surface.is-inline {
  position: relative;
}

.platform-popup-surface.is-minimal {
  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  border-radius: 10px !important;
  background: #1a1a1a !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.platform-popup-surface.is-minimal::before {
  content: none;
  display: none;
}

.platform-popup-search-header {
  min-width: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
}

.platform-popup-search-header__icon {
  flex: 0 0 14px;
  color: rgba(255, 255, 255, 0.5);
}

.platform-popup-search-header__input {
  min-width: 0;
  flex: 1 1 auto;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.platform-popup-search-header__input::-webkit-search-cancel-button {
  display: none;
}

.platform-popup-search-header__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.platform-popup-search-header__shortcut {
  min-width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.58);
  font: inherit;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}

.platform-popup-surface::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  padding: 1px;
  background: var(--platform-popup-border) !important;
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-clip: content-box, border-box;
  mask-composite: exclude;
  mask-origin: content-box, border-box;
  mask-repeat: repeat, repeat;
  mask-size: auto, auto;
}

.platform-popup-surface[data-platform-popup-animation="up-in"] {
  animation: platform-popup-up-in 180ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
  transform-origin: bottom left;
}

.platform-popup-surface[data-platform-popup-animation="up-out"] {
  pointer-events: none;
  animation: platform-popup-up-out 180ms cubic-bezier(0.4, 0, 1, 1) both !important;
  transform-origin: bottom left;
}

.platform-popup-surface[data-platform-popup-animation="down-in"] {
  animation: platform-popup-down-in 180ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
  transform-origin: top right;
}

.platform-popup-surface[data-platform-popup-animation="down-out"] {
  pointer-events: none;
  animation: platform-popup-down-out 180ms cubic-bezier(0.4, 0, 1, 1) both !important;
  transform-origin: top right;
}

.platform-popup-surface[data-platform-popup-animation="left-in"] {
  animation: platform-popup-left-in 180ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
  transform-origin: left center;
}

.platform-popup-surface[data-platform-popup-animation="left-out"] {
  pointer-events: none;
  animation: platform-popup-left-out 180ms cubic-bezier(0.4, 0, 1, 1) both !important;
  transform-origin: left center;
}

@keyframes platform-popup-up-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes platform-popup-up-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(10px); }
}

@keyframes platform-popup-down-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes platform-popup-down-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

@keyframes platform-popup-left-in {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes platform-popup-left-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .platform-popup-surface[data-platform-popup-animation] {
    animation-duration: 1ms;
  }
}


.platform-resource-share-modal__body,
.platform-resource-rename-modal__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-resource-share-modal__team-list {
  display: flex;
  max-height: min(360px, calc(100dvh - 260px));
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  flex-direction: column;
  gap: 6px;
  overflow: auto;
}

.platform-resource-share-modal__team {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.platform-resource-share-modal__team:hover:not(
  .is-disabled
),
.platform-resource-share-modal__team.is-selected {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
}

.platform-resource-share-modal__team.is-shared {
  color: rgba(255, 255, 255, 0.62);
}

.platform-resource-share-modal__team.is-disabled {
  cursor: default;
  opacity: 0.45;
}

.platform-resource-share-modal__team-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.platform-resource-share-modal__team-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
}

.platform-resource-share-modal__team-icon img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.platform-resource-share-modal__team-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-resource-share-modal__team-name,
.platform-resource-share-modal__team-meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-resource-share-modal__team-name {
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.platform-resource-share-modal__team-meta {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}

.platform-resource-share-modal__team-check {
  color: rgba(255, 255, 255, 0.9);
}

.platform-resource-share-modal__empty,
.platform-resource-share-modal__loading {
  width: 100%;
  min-height: 112px;
  box-sizing: border-box;
  padding: 24px 12px;
}

.platform-resource-rename-modal__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 400;
}

.platform-resource-rename-modal__field input {
  box-sizing: border-box;
  width: 100%;
  height: 36px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  outline: none;
  color: #fff;
  font: inherit;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.platform-resource-rename-modal__field input:focus {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.065);
}

.platform-resource-rename-modal__field input:disabled {
  opacity: 0.55;
}

.platform-resource-action-modal__error {
  margin: 0;
  color: #f0a4a4;
  font-size: 12px;
  line-height: 1.45;
}


.platform-resource-header-actions {
  min-width: 0;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 4px;
}

.platform-resource-header-version-label {
  margin-left: 6px;
  color: #fff;
}

.platform-resource-header-version-label .platform-version-label__separator {
  color: #fff;
}

.platform-resource-actions-menu {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.platform-resource-actions-menu__popup {
  --platform-popup-font-size: 12px;
  min-width: 0;
}

.platform-resource-actions-menu__popup .tb-popup-label {
  min-width: 0;
  flex: 1 1 auto;
}

.platform-resource-actions-menu__item-trailing {
  width: 14px;
  height: 14px;
  display: inline-flex;
  flex: 0 0 14px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.54);
}

.platform-resource-actions-menu__shortcut {
  margin-left: auto;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.platform-resource-actions-information {
  width: 100%;
  display: block;
}

.platform-resource-actions-information__popup {
  --platform-popup-font-size: 12px;
  min-width: 0;
}

.platform-resource-actions-information__metadata {
  gap: 10px;
  padding: 14px 16px;
}

.platform-resource-actions-menu__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.platform-resource-actions-menu__metadata {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-resource-actions-menu__metadata-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.platform-resource-actions-information__metadata .platform-resource-actions-menu__metadata-row {
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
}

.platform-resource-actions-information__metadata .platform-resource-actions-menu__metadata-row.is-resource-id
  .platform-resource-actions-menu__metadata-content {
  justify-content: flex-end;
}

.platform-resource-actions-information__metadata .platform-resource-actions-menu__metadata-row.is-resource-id
  .platform-resource-actions-menu__metadata-value.is-copyable {
  flex: 0 1 auto;
  text-align: right;
}

.platform-resource-actions-menu__metadata.platform-resource-actions-information__metadata {
  border-bottom: 0;
}

.platform-resource-actions-menu__metadata-label {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
}

.platform-resource-actions-menu__metadata-value {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-resource-actions-menu__metadata-content {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
}

.platform-resource-actions-menu__metadata-value.is-copyable {
  overflow: visible;
  flex: 1 1 auto;
  text-align: left;
  text-overflow: clip;
  overflow-wrap: anywhere;
  white-space: normal;
}

.platform-resource-actions-menu__metadata-copy.platform-icon-button {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  flex: 0 0 20px;
  margin: -3px -3px -3px 0;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.56);
}

.platform-resource-actions-menu__metadata-copy.platform-icon-button:hover,
.platform-resource-actions-menu__metadata-copy.platform-icon-button:focus-visible {
  color: #fff;
}

.platform-resource-actions-menu__metadata-value.is-monospace {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}


.platform-profile-image-picker {
  position: relative;
  width: var(--platform-profile-image-size, 48px);
  height: var(--platform-profile-image-size, 48px);
  flex: 0 0 var(--platform-profile-image-size, 48px);
}

.platform-profile-image-picker__surface {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.platform-profile-image-picker__surface.is-trigger {
  cursor: pointer;
  transition: border-color 140ms ease, background-color 140ms ease;
}

.platform-profile-image-picker__surface.is-trigger:hover,
.platform-profile-image-picker.is-open .platform-profile-image-picker__surface.is-trigger {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.15);
}

.platform-profile-image-picker__surface.is-trigger:focus-visible {
  outline: 2px solid rgba(77, 163, 255, 0.9);
  outline-offset: 3px;
}

.platform-profile-image-picker__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.platform-profile-image-picker__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.9);
  font-size: calc(var(--platform-profile-image-size, 48px) * 0.3);
  font-weight: 400;
  line-height: 1;
}

.platform-profile-image-picker__menu.platform-popup-surface {
  --platform-popup-padding: 10px;
  --platform-popup-radius: 15px;
  min-width: 230px;
}

.platform-profile-image-picker__options {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.platform-profile-image-picker__option {
  position: relative;
  aspect-ratio: 1;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.075);
  cursor: pointer;
  transition: border-color 140ms ease, transform 140ms ease;
}

.platform-profile-image-picker__option:hover,
.platform-profile-image-picker__option:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  outline: none;
  transform: translateY(-1px);
}

.platform-profile-image-picker__option.is-selected {
  border-color: #4da3ff;
}

.platform-profile-image-picker__option img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.platform-profile-image-picker__selected {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: #1675e0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}


.platform-owner-selector__identity {
  display: inline-flex;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  gap: 8px;
}

.platform-owner-selector__avatar {
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  flex: 0 0 20px !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
}

.platform-owner-selector__avatar-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border-radius: 50%;
  object-fit: cover;
}

.platform-owner-selector__avatar-fallback {
  line-height: 1;
}

.platform-owner-selector__name {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-owner-selector .platform-selector__value {
  min-width: 0;
  max-width: 100%;
}

.platform-owner-selector__option .platform-selector__option-leading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.platform-selector {
  position: relative;
  display: inline-flex;
  min-width: 0;
  color: #fff;
}

.platform-selector.is-full-width {
  width: 100%;
}

.platform-selector__trigger {
  min-width: 0;
  min-height: var(--platform-control-height, 32px);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.platform-selector.is-full-width .platform-selector__trigger {
  width: 100%;
}

.platform-selector.is-align-end .platform-selector__trigger {
  justify-content: flex-end;
  text-align: right;
}

.platform-selector__trigger:hover:not(:disabled),
.platform-selector__trigger:focus-visible {
  color: #fff;
}

.platform-selector__trigger:focus-visible {
  outline: none;
}

.platform-selector__trigger:disabled {
  cursor: default;
}

.platform-selector.is-disabled {
  opacity: 0.5;
}

.platform-selector__value {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-selector__chevrons {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: rgba(255, 255, 255, 0.46);
}

.platform-selector__popup {
  top: calc(100% + 8px);
  left: 0;
  min-width: max(100%, 180px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.platform-selector__popup.is-portaled {
  min-width: 180px;
}

.platform-selector.is-align-end .platform-selector__popup {
  right: 0;
  left: auto;
}

.platform-selector__popup::-webkit-scrollbar {
  display: none;
}

.platform-selector__popup-header {
  position: sticky;
  top: 0;
  z-index: 7;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: #1a1a1a;
}

.platform-selector__popup-header.is-search-header {
  padding: 0;
}

.platform-selector__listbox {
  min-height: 0;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
}

.platform-selector__listbox::-webkit-scrollbar {
  display: none;
}

.platform-selector__custom-content {
  position: relative;
  z-index: 6;
  min-width: 0;
}

.platform-selector__option {
  position: relative;
  z-index: 6;
  width: 100%;
  min-height: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.platform-selector__option.has-leading {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.platform-selector__option:hover:not(:disabled),
.platform-selector__option:focus-visible,
.platform-selector__option.is-selected {
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.platform-selector__option:focus-visible {
  outline: none;
}

.platform-selector__option:disabled {
  opacity: 0.42;
  cursor: default;
}

.platform-selector__option-leading,
.platform-selector__option-end,
.platform-selector__option-check,
.platform-selector__option-trailing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.platform-selector__option-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-selector__option-label,
.platform-selector__option-description {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-selector__option-label {
  color: inherit;
  font-size: 12px;
  font-weight: 400;
}

.platform-selector__option-description {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 400;
}

.platform-selector__option-check {
  width: 14px;
  height: 14px;
  color: #fff;
}

.platform-selector__option-end {
  min-width: 14px;
  gap: 8px;
  margin-left: auto;
  justify-self: end;
  justify-content: flex-end;
}

.platform-selector__option-trailing {
  min-width: 12px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.platform-selector__state {
  position: relative;
  z-index: 6;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}

.platform-button-selector {
  --platform-button-selector-popup-trigger-width: 28px;
  position: relative;
  display: inline-flex;
  min-width: 0;
  transition: opacity 160ms ease;
}

.platform-button-selector.is-full-width,
.platform-button-selector.is-full-width .platform-button-selector__group {
  width: 100%;
}

.platform-button-selector.is-full-width
  .platform-button-selector__action.platform-button {
  flex: 1 1 auto;
  padding-right: var(--platform-button-padding-inline) !important;
  padding-left: calc(
    var(--platform-button-padding-inline) +
      var(--platform-button-selector-popup-trigger-width)
  ) !important;
}

.platform-button-selector.is-disabled {
  opacity: 0.5;
}

.platform-button-selector.is-disabled .platform-button:disabled {
  opacity: 1 !important;
}

.platform-button-selector__group {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.platform-button-selector__group.is-secondary
  .platform-button-selector__action.platform-button {
  padding-right: var(--platform-button-padding-inline) !important;
  border-right: 0 !important;
}

.platform-button-selector__group.is-secondary
  .platform-button-selector__popup-trigger.platform-button {
  border-left: 0 !important;
}

.platform-button-selector:not(.is-disabled)
  .platform-button-selector__group.is-primary:hover
  > .platform-button {
  background: rgba(255, 255, 255, 0.9) !important;
}

.platform-button-selector:not(.is-disabled)
  .platform-button-selector__group.is-secondary:hover
  > .platform-button {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

.platform-button-selector__button.platform-button,
.platform-button-selector__action.platform-button {
  min-width: 0;
}

.platform-button-selector__button.platform-button {
  max-width: 100%;
}

.platform-button-selector__leading,
.platform-button-selector__label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.platform-button-selector__leading {
  flex: 0 0 auto;
}

.platform-button-selector__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-button-selector__action.platform-button {
  border-radius: 8px 0 0 8px !important;
}

.platform-button-selector
  .platform-button-selector__popup-trigger.platform-button {
  width: var(--platform-button-selector-popup-trigger-width);
  min-width: var(--platform-button-selector-popup-trigger-width);
  padding: 0 !important;
  border-radius: 0 8px 8px 0 !important;
}

.platform-button-selector__divider {
  position: relative;
  z-index: 2;
  width: 1px;
  height: 14px;
  flex: 0 0 1px;
  margin-right: -1px;
  margin-left: -1px;
  background: rgba(255, 255, 255, 0.18);
}

.platform-button-selector__group.is-primary .platform-button-selector__divider {
  background: rgba(0, 0, 0, 0.18);
}

.platform-button-selector.is-primary.is-disabled
  .platform-button-selector__divider {
  background: rgba(0, 0, 0, 0.12);
}

.platform-button-selector__popup.is-portaled {
  min-width: 180px;
}


.platform-checkbox {
  position: relative;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex: 0 0 auto;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.platform-checkbox::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transform: scale(0.6);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.platform-checkbox:hover,
.platform-checkbox.is-selected {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.platform-checkbox.is-selected::after {
  opacity: 1;
  transform: scale(1);
}

.platform-checkbox.is-partial::after {
  inset: 5px 3px;
  border-radius: 999px;
  opacity: 1;
  transform: scale(1);
}

.platform-checkbox:focus-visible {
  outline: 1px solid rgba(126, 255, 255, 0.8);
  outline-offset: 2px;
}

.platform-checkbox:disabled {
  opacity: 0.35;
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .platform-checkbox,
  .platform-checkbox::after {
    transition-duration: 1ms;
  }
}


.platform-attachments {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
  align-self: stretch;
  padding: 12px 24px;
  overflow: hidden;
}

.platform-attachments__header {
  min-width: 0;
  min-height: 28px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-attachments__title {
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-attachments__computer-upload {
  margin-left: auto;
}

button.platform-attachments__computer-upload.platform-button {
  padding-right: 0 !important;
}

button.platform-attachments__computer-upload.platform-button.is-secondary,
button.platform-attachments__computer-upload.platform-button.is-secondary:hover:not(:disabled),
button.platform-attachments__computer-upload.platform-button.is-secondary.is-active {
  background: transparent !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.platform-attachments__drop-target {
  min-width: 0;
  margin-top: 10px;
  border-radius: 10px;
  transition:
    background-color 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease;
}

.platform-attachments__drop-target.is-empty {
  min-height: 168px;
  border: 0;
}

.platform-attachments__drop-target.is-dragging {
  border-color: rgba(77, 163, 255, 0.72);
  background: rgba(77, 163, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.2);
}

.platform-attachments__empty {
  box-sizing: border-box;
  width: 100%;
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 16px;
  border: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
  cursor: pointer;
}

.platform-attachments__empty:disabled,
.platform-attachments__add-row:disabled {
  cursor: default;
  opacity: 0.5;
}

.platform-attachments__empty-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.platform-attachments__empty-title {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-attachments__empty-description {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-attachments__list {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-attachments__add-row,
.platform-attachments__item {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  transition: background-color 140ms ease;
}

.platform-attachments__add-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.platform-attachments__item {
  position: relative;
  display: flex;
  align-items: center;
}

.platform-attachments__add-row:hover:not(:disabled),
.platform-attachments__item:hover,
.platform-attachments__item:focus-within,
.platform-attachments__item.is-active {
  background: rgba(255, 255, 255, 0.0375);
}

.platform-attachments__add-row:focus-visible,
.platform-attachments__item-main:focus-visible {
  outline: 1px solid rgba(77, 163, 255, 0.72);
  outline-offset: -1px;
}

.platform-attachments__add-icon,
.platform-attachments__preview {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.075);
}

.platform-attachments__add-icon {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.platform-attachments__add-icon > svg,
.platform-attachments__preview > svg {
  width: 16px;
  height: 16px;
}

.platform-attachments__preview > img,
.platform-attachments__image-surface,
.platform-attachments__image-surface .platform-attachments__image {
  width: 100%;
  height: 100%;
}

.platform-attachments__preview > img {
  box-sizing: border-box;
  padding: 7px;
  object-fit: contain;
}

.platform-attachments__image-surface {
  display: block;
  overflow: hidden;
  border-radius: inherit;
  background: transparent;
}

.platform-attachments__image-surface .platform-attachments__image {
  display: block;
  max-height: none !important;
  object-fit: cover;
}

.platform-attachments__item-main {
  min-width: 0;
  min-height: 56px;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  text-align: left;
}

button.platform-attachments__item-main {
  cursor: pointer;
}

.platform-attachments__copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.platform-attachments__name {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-attachments__metadata {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*
 * Inline attachment previews used by RunnerChat and other thread surfaces.
 * Keep the card domain-neutral; callers provide the icon, image preview, and
 * type label while this component owns the shared layout and interaction.
 */
.platform-attachment-preview {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
}

.platform-attachment-preview--removable {
  overflow: visible;
}

.platform-attachment-preview--composer {
  height: 46px;
  max-width: min(220px, 100%);
  flex: 0 0 auto;
  gap: 10px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: transparent;
  backdrop-filter: blur(20px);
}

.platform-attachment-preview--message {
  width: fit-content;
  max-width: min(640px, 100%);
  min-height: 0;
  flex: 0 1 auto;
  align-self: flex-start;
  gap: 14px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.platform-attachment-preview--message:hover,
.platform-attachment-preview--message.platform-attachment-preview--active {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.15);
}

.platform-attachment-preview--message.platform-attachment-preview--removable,
.platform-attachment-preview--image.platform-attachment-preview--removable {
  overflow: visible;
  z-index: 1;
}

.platform-attachment-preview--image {
  width: 53px;
  height: 53px;
  min-height: 53px;
  flex: 0 0 53px;
  justify-content: center;
  gap: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: none;
}

.platform-attachment-preview__image-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.platform-attachment-preview__image-frame > .platform-attachment-preview__image-lazy-preview,
.platform-attachment-preview__image-frame > .tb-runner-image-preview-surface,
.platform-attachment-preview__image-frame > .platform-attachment-preview__image-button {
  width: 100%;
  height: 100%;
}

.platform-attachment-preview__image-frame .tb-runner-image-preview-surface,
.platform-attachment-preview__image-lazy-preview > .tb-runner-image-preview-surface {
  width: 100%;
  height: 100%;
}

.platform-attachment-preview__image-button {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
}

.platform-attachment-preview__image-button.is-clickable {
  cursor: pointer;
}

.platform-attachment-preview__image-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.platform-attachment-preview__image-placeholder img,
.platform-attachment-preview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-attachment-preview__file-main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

button.platform-attachment-preview__file-main {
  cursor: pointer;
}

.platform-attachment-preview__file-main:focus-visible {
  outline: 1px solid rgba(77, 163, 255, 0.72);
  outline-offset: -1px;
}

.platform-attachment-preview__file-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.94);
}

.platform-attachment-preview--composer .platform-attachment-preview__file-icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.platform-attachment-preview__file-icon > svg,
.platform-attachment-preview__file-icon > img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.platform-attachment-preview--composer .platform-attachment-preview__file-icon > svg,
.platform-attachment-preview--composer .platform-attachment-preview__file-icon > img {
  width: 20px;
  height: 20px;
}

.platform-attachment-preview__file-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
}

.platform-attachment-preview--composer .platform-attachment-preview__file-copy {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.platform-attachment-preview__name {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-attachment-preview--composer .platform-attachment-preview__name {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
}

.platform-attachment-preview__type,
.platform-attachment-preview__metadata {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-attachment-preview--composer .platform-attachment-preview__metadata {
  max-width: 92px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.1;
}

.platform-attachment-preview__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 2px;
  border: 0;
  color: #000;
  background: rgb(255 255 255 / 90%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  cursor: pointer;
}

.platform-attachment-preview__remove:disabled {
  cursor: default;
  opacity: 0.5;
}

.platform-attachment-preview__remove-icon {
  width: 12px;
  height: 12px;
}

.platform-attachment-preview--message.platform-attachment-preview--removable
  .platform-attachment-preview__remove-icon {
  width: 10px;
  height: 10px;
}

.platform-attachment-preview__remove--image,
.platform-attachment-preview__remove--file {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
  z-index: 2;
}

.platform-attachment-preview--message.platform-attachment-preview--removable
  .platform-attachment-preview__remove--image,
.platform-attachment-preview--message.platform-attachment-preview--removable
  .platform-attachment-preview__remove--file {
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
}

.platform-attachment-preview--image:hover .platform-attachment-preview__remove--image,
.platform-attachment-preview--image:focus-within .platform-attachment-preview__remove--image,
.platform-attachment-preview--file:hover .platform-attachment-preview__remove--file,
.platform-attachment-preview--file:focus-within .platform-attachment-preview__remove--file {
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
}

.platform-attachment-preview--uploading .platform-attachment-preview__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.platform-attachment-preview__upload-indicator {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.platform-attachments__item-actions {
  min-width: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 8px;
  opacity: 0;
  transition: opacity 120ms ease;
}

.platform-attachments__item:hover .platform-attachments__item-actions,
.platform-attachments__item:focus-within .platform-attachments__item-actions {
  opacity: 1;
}

.platform-attachment-actions {
  flex: 0 0 auto;
}

.platform-attachment-rename-modal__form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-attachment-rename-modal__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
}

.platform-attachment-rename-modal__input {
  box-sizing: border-box;
  width: 100%;
  min-height: 32px;
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 12px;
}

.platform-attachment-rename-modal__input:focus {
  box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.72);
}

.platform-attachment-rename-modal__error {
  margin: 0;
  color: #ff8f8f;
  font-size: 10px;
  line-height: 1.4;
}

.platform-attachments__status,
.platform-attachments__error {
  margin-top: 8px;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 400;
}

.platform-attachments__status {
  color: rgba(255, 255, 255, 0.5);
}

.platform-attachments__error {
  color: #ff8f8f;
}

@media (prefers-reduced-motion: reduce) {
  .platform-attachments__drop-target,
  .platform-attachments__add-row,
  .platform-attachments__item,
  .platform-attachments__item-actions {
    transition-duration: 1ms;
  }
}


.platform-activity-overview {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: clamp(460px, 50dvh, 560px);
  min-height: 460px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 140px;
  overflow: hidden;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0;
}

.platform-activity-overview.is-loading,
.platform-activity-overview.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-activity-overview__header-actions {
  position: absolute;
  top: 12px;
  right: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.platform-activity-overview__loading,
.platform-activity-overview__empty {
  width: 100%;
  min-height: 240px;
}

.platform-activity-overview__viewport {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.platform-activity-overview.is-fit-timeline .platform-activity-overview__viewport {
  overflow-x: hidden;
}

.platform-activity-overview__viewport::-webkit-scrollbar {
  display: none;
}

.platform-activity-overview__timeline {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  transition: height 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-activity-overview__custom-item {
  position: absolute;
  left: max(
    24px,
    min(
      calc(
        var(--platform-activity-overview-item-left) +
        var(--platform-activity-overview-item-indent, 0px)
      ),
      calc(100% - 344px)
    )
  );
  top: 1px;
  box-sizing: border-box;
  width: min(320px, calc(100% - 48px - var(--platform-activity-overview-item-indent, 0px)));
  max-width: calc(100% - 48px);
  min-width: 0;
  pointer-events: auto;
}

.platform-activity-overview__custom-content {
  width: 100%;
  max-width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
}

.platform-activity-overview__custom-content.is-compact {
  height: 36px;
}

.platform-activity-overview-card {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 44px;
  min-width: 0;
  padding: 0 10px 0 6px;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.92);
  background: #2b2b2b;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.18);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    transform 140ms ease;
}

.platform-activity-overview-card.is-tool-call {
  height: 36px;
  padding-top: 0;
  padding-bottom: 0;
  gap: 7px;
}

.platform-activity-overview-card.is-tool-call .platform-activity-overview-card__permission {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  color: #fff;
}

.platform-activity-overview-card.is-tool-call.is-connector .platform-activity-overview-card__permission {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}

.platform-activity-overview-card.is-user-message .platform-activity-overview-card__permission {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  color: #fff;
}

.platform-activity-overview-card.is-tool-call .platform-activity-overview-card__permission svg,
.platform-activity-overview-card.is-user-message .platform-activity-overview-card__permission svg {
  color: #fff;
}

.platform-activity-overview-card__connector-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

.platform-activity-overview-card__connector-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.platform-activity-overview-card.has-group-rail {
  padding-left: 10px;
}

.platform-activity-overview-card__group-rail {
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 2px;
  border-radius: 0 2px 2px 0;
  background: var(--platform-activity-overview-group-rail-color, rgba(77, 163, 255, 0.9));
  pointer-events: none;
}

.platform-activity-overview-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: #313131;
}

.platform-activity-overview-card.is-selected {
  background: #404040;
}

.platform-activity-overview-card.is-selected:hover {
  background: #454545;
}

.platform-activity-overview-card.is-plain,
.platform-activity-overview-card.is-plain:hover,
.platform-activity-overview-card.is-plain.is-selected,
.platform-activity-overview-card.is-plain.is-selected:hover {
  width: auto;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(50px);
}

.platform-activity-overview-card.is-tool-call,
.platform-activity-overview-card.is-tool-call.is-plain,
.platform-activity-overview-card.is-tool-call.is-plain.is-selected {
  border-color: rgba(255, 255, 255, 0.1);
  background: #2b2b2b;
  backdrop-filter: none;
}

.platform-activity-overview-card.is-tool-call:hover,
.platform-activity-overview-card.is-tool-call.is-plain:hover,
.platform-activity-overview-card.is-tool-call.is-plain.is-selected:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: #313131;
}

.platform-activity-overview-card.is-tool-call.is-selected,
.platform-activity-overview-card.is-tool-call.is-plain.is-selected {
  background: #404040;
}

.platform-activity-overview-card.is-tool-call.is-selected:hover,
.platform-activity-overview-card.is-tool-call.is-plain.is-selected:hover {
  background: #454545;
}

.platform-activity-overview__custom-content > .platform-activity-overview-card {
  width: 100%;
  max-width: 100%;
}

.platform-activity-overview__custom-content > .platform-activity-overview-card.is-tool-call,
.platform-activity-overview__custom-content > .platform-activity-overview-card.is-tool-call:hover,
.platform-activity-overview__custom-content > .platform-activity-overview-card.is-tool-call.is-selected,
.platform-activity-overview__custom-content > .platform-activity-overview-card.is-tool-call.is-selected:hover {
  width: fit-content;
  max-width: 100%;
}

.platform-activity-overview-card:focus-visible {
  outline: 1px solid #4da3ff;
  outline-offset: 2px;
}

.platform-activity-overview__row.is-error .platform-activity-overview-card {
  border-color: rgba(255, 87, 87, 0.72);
}

.platform-activity-overview-card__permission {
  --platform-permission-summary-icon-size: 22px;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--platform-activity-overview-ring-color, #4ea2ff);
  background: transparent;
}

.platform-activity-overview-card.is-ring-1 {
  --platform-activity-overview-ring-color: #1de1a3;
  --platform-activity-overview-ring-background: rgba(29, 225, 163, 0.1);
}

.platform-activity-overview-card.is-ring-2 {
  --platform-activity-overview-ring-color: #4ea2ff;
  --platform-activity-overview-ring-background: rgba(78, 162, 255, 0.1);
}

.platform-activity-overview-card.is-ring-3 {
  --platform-activity-overview-ring-color: #e21e52;
  --platform-activity-overview-ring-background: rgba(226, 30, 82, 0.1);
}

.platform-activity-overview-card__permission .platform-permission-mini-ring-icon,
.platform-activity-overview-card__permission .playground-permission-mini-ring-icon {
  --platform-permission-summary-icon-size: 22px;
}

.platform-activity-overview-card__title {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-activity-overview-card__metadata {
  min-width: 0;
  flex: 0 1 auto;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-activity-overview-card__status {
  flex: 0 0 14px;
  color: rgba(133, 223, 123, 0.9);
}

.platform-activity-overview-card.is-tool-call .platform-activity-overview-card__title {
  flex: 0 1 auto;
}

.platform-activity-overview-card.is-tool-call .platform-activity-overview-card__metadata {
  margin-left: 8px;
}

.platform-activity-overview-card.is-tool-call .platform-activity-overview-card__status {
  margin-left: 1px;
}

.platform-activity-overview-card.is-tool-call .platform-activity-overview-card__actor {
  margin-left: auto;
}

.platform-activity-overview__row.is-error .platform-activity-overview-card__status {
  color: rgba(255, 117, 117, 0.95);
}

.platform-activity-overview__row.is-running .platform-activity-overview-card__status {
  color: rgba(77, 163, 255, 0.95);
}

.platform-activity-overview-card__actor {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
}

.platform-activity-overview-card__actor > *,
.platform-activity-overview-card__actor img {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  object-fit: cover;
}

.platform-activity-overview__plot {
  position: relative;
  width: 100%;
  min-height: 240px;
  overflow: hidden;
  background: transparent;
  transition: height 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-activity-overview__range-empty {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
}

.platform-activity-overview__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.platform-activity-overview__grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  border-left: 1px dashed rgba(255, 255, 255, 0.075);
  transform: translateX(-0.5px);
}

.platform-activity-overview__row {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  height: 46px;
  pointer-events: none;
  transition: top 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-activity-overview__tree-toggle {
  position: absolute;
  z-index: 5;
  left: clamp(
    2px,
    calc(var(--platform-activity-overview-item-left) - 18px),
    max(2px, calc(100% - 358px))
  );
  top: 14px;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}

.platform-activity-overview__tree-toggle:hover,
.platform-activity-overview__tree-toggle:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.platform-activity-overview__tree-toggle:focus-visible {
  outline: 1px solid rgba(77, 163, 255, 0.82);
  outline-offset: 1px;
}

.platform-activity-overview__tree-rail {
  position: absolute;
  z-index: 1;
  left: clamp(
    9px,
    calc(var(--platform-activity-overview-item-left) - 11px),
    max(9px, calc(100% - 351px))
  );
  top: 34px;
  width: 1px;
  height: calc(var(--platform-activity-overview-descendant-count, 0) * 58px + 14px);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.platform-activity-overview__item,
.platform-activity-overview__signal {
  position: absolute;
  left: max(24px, min(var(--platform-activity-overview-item-left), calc(100% - 158px)));
  top: 1px;
  box-sizing: border-box;
  pointer-events: auto;
}

.platform-activity-overview__item {
  width: clamp(158px, var(--platform-activity-overview-item-width), 380px);
  height: 44px;
  min-width: 158px;
  max-width: 380px;
  padding: 0 12px 0 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.92);
  background: #171717;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.18);
  font: inherit;
  text-align: left;
  white-space: nowrap;
  transition:
    border-color 140ms ease,
    background-color 140ms ease,
    transform 140ms ease;
}

button.platform-activity-overview__item {
  cursor: pointer;
}

button.platform-activity-overview__item:hover,
button.platform-activity-overview__item:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: #1d1d1d;
}

button.platform-activity-overview__item:focus-visible,
button.platform-activity-overview__signal:focus-visible {
  outline: 1px solid #4da3ff;
  outline-offset: 2px;
}

.platform-activity-overview__row.is-success .platform-activity-overview__item {
  border-color: rgba(133, 223, 123, 0.35);
}

.platform-activity-overview__row.is-error .platform-activity-overview__item {
  border-color: rgba(255, 87, 87, 0.65);
  color: #ff7575;
}

.platform-activity-overview__row.is-running .platform-activity-overview__item {
  border-color: rgba(77, 163, 255, 0.42);
}

.platform-activity-overview__item-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: var(--platform-activity-overview-item-color, rgba(201, 128, 255, 0.95));
  background: color-mix(
    in srgb,
    var(--platform-activity-overview-item-color, #b26be8) 18%,
    transparent
  );
}

.platform-activity-overview__row.is-subflow .platform-activity-overview__item-icon {
  color: var(--platform-activity-overview-item-color, #ffd65c);
  background: color-mix(
    in srgb,
    var(--platform-activity-overview-item-color, #ffd65c) 18%,
    transparent
  );
}

.platform-activity-overview__item-label {
  min-width: 0;
  overflow: hidden;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
}

.platform-activity-overview__item-metadata {
  flex: 0 0 auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 400;
}

.platform-activity-overview__item-status {
  flex: 0 0 auto;
  color: currentColor;
}

.platform-activity-overview__signal {
  width: auto;
  min-width: 96px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font: inherit;
  text-align: left;
}

button.platform-activity-overview__signal {
  cursor: pointer;
}

.platform-activity-overview__signal-mark {
  width: 4px;
  height: 34px;
  flex: 0 0 4px;
  display: block;
  border-radius: 4px;
  background: var(--platform-activity-overview-item-color, #4da3ff);
  box-shadow: 0 0 0 3px rgba(77, 163, 255, 0.1);
}

.platform-activity-overview__row.is-error .platform-activity-overview__signal-mark {
  background: #ff5757;
  box-shadow: 0 0 0 3px rgba(255, 87, 87, 0.1);
}

.platform-activity-overview__row.is-success .platform-activity-overview__signal-mark {
  background: #85df7b;
  box-shadow: 0 0 0 3px rgba(133, 223, 123, 0.1);
}

.platform-activity-overview__signal-label {
  max-width: 220px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-activity-overview__axis {
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 40px);
  height: var(--platform-activity-overview-axis-height);
  margin: 0 20px;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  z-index: 3;
}

.platform-activity-overview__tick {
  position: absolute;
  top: 0;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform: none;
}

.platform-activity-overview__tick:first-child {
  margin-left: 0;
  transform: none;
}

.platform-activity-overview__tick:last-child {
  transform: none;
}

.platform-activity-overview__navigator {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  --platform-activity-overview-minimap-height: 48px;
  --platform-activity-overview-axis-height: 20px;
  --platform-activity-overview-time-label-gap: 15px;
  --platform-activity-overview-texture-top-offset: 12px;
  display: grid;
  grid-template-rows:
    var(--platform-activity-overview-minimap-height)
    var(--platform-activity-overview-axis-height);
  row-gap: var(--platform-activity-overview-time-label-gap);
  align-content: end;
  width: 100%;
  min-width: 0;
  min-height: 140px;
  overflow: hidden;
  background: transparent;
}

.platform-activity-overview__navigator-guides {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  left: 20px;
  z-index: 1;
  pointer-events: none;
}

.platform-activity-overview__navigator-guide {
  position: absolute;
  top: calc(
    100% -
    var(--platform-activity-overview-axis-height) -
    var(--platform-activity-overview-time-label-gap) -
    var(--platform-activity-overview-minimap-height) +
    var(--platform-activity-overview-texture-top-offset)
  );
  bottom: var(--platform-activity-overview-axis-height);
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-1px);
}

.platform-activity-overview__minimap {
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 40px);
  height: var(--platform-activity-overview-minimap-height);
  margin: 0 20px;
  border-radius: 4px;
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

.platform-activity-overview__minimap:focus-visible {
  outline: 1px solid #4da3ff;
  outline-offset: 2px;
}

.platform-activity-overview__minimap-bars {
  position: absolute;
  inset: 6px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1px;
  overflow: hidden;
  border-radius: 4px;
}

.platform-activity-overview__minimap-texture-bar {
  flex: 0 0 2px;
  align-self: center;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.platform-activity-overview__minimap-window {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  box-sizing: border-box;
  min-width: 12px;
  border: 1px solid rgba(77, 163, 255, 0.5);
  border-radius: 4px;
  background: rgba(77, 163, 255, 0.15);
  cursor: grab;
  pointer-events: auto;
  touch-action: none;
}

.platform-activity-overview__minimap-window:active {
  cursor: grabbing;
}

.platform-activity-overview__minimap-handle {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 14px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  transform: translateY(-50%);
  touch-action: none;
}

.platform-activity-overview__minimap-handle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 28px;
  border: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.24);
  content: "";
  transform: translate(-50%, -50%);
}

.platform-activity-overview__minimap-handle.is-start {
  left: -7px;
}

.platform-activity-overview__minimap-handle.is-end {
  right: -7px;
}

.platform-activity-overview__minimap-handle:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 1px;
}

.platform-activity-overview__resize-handle {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  border: 0;
  outline: 0;
  background: transparent;
  cursor: ns-resize;
  touch-action: none;
}

.platform-activity-overview__resize-handle::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.16);
  content: "";
  opacity: 0;
  transform: translateX(-50%);
  transition:
    opacity 120ms ease,
    background-color 120ms ease;
}

.platform-activity-overview__resize-handle:hover::after,
.platform-activity-overview__resize-handle:focus-visible::after {
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .platform-activity-overview__item {
    transition: none;
  }
}

@media (max-width: 760px) {
  .platform-activity-overview {
    height: 460px;
    min-height: 460px;
  }

  .platform-activity-overview__item {
    width: clamp(146px, var(--platform-activity-overview-item-width), 280px);
    min-width: 146px;
    max-width: 280px;
  }
}


.platform-activity-timeline {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  color: #fff;
}

.platform-activity-timeline__header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  min-height: 32px;
  margin-bottom: 16px;
}

.platform-activity-timeline__title {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.platform-activity-timeline__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-left: auto;
}

.platform-activity-timeline__pane-heading,
.platform-activity-timeline__title-actions {
  display: flex;
  align-items: center;
  min-width: 0;
}

.platform-activity-timeline__pane-heading {
  flex: 0 0 auto;
  gap: 6px;
}

.platform-activity-timeline__title-actions {
  gap: 4px;
}

.platform-activity-timeline__list {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-activity-timeline__item {
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 38px;
}

.platform-activity-timeline__rail {
  position: relative;
  display: flex;
  justify-content: center;
}

.platform-activity-timeline__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.platform-activity-timeline__marker > img,
.platform-activity-timeline__marker > span,
.platform-activity-timeline__marker > div {
  width: 100%;
  height: 100%;
}

.platform-activity-timeline__marker img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.platform-activity-timeline__item.is-status .platform-activity-timeline__marker {
  color: #f3cc45;
}

.platform-activity-timeline__item.is-thread .platform-activity-timeline__marker {
  color: #4da3ff;
}

.platform-activity-timeline__marker .platform-activity-timeline__priority-icon {
  justify-content: center;
}

.platform-activity-timeline__entry {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 8px 8px 8px 4px;
  border-radius: 8px;
}

.platform-activity-timeline__item.is-interactive .platform-activity-timeline__entry {
  cursor: pointer;
}

.platform-activity-timeline__item.is-interactive .platform-activity-timeline__entry:hover {
  background: rgba(255, 255, 255, 0.0375);
}

.platform-activity-timeline__item.has-content {
  grid-template-columns: minmax(0, 1fr);
  margin: 8px 0;
}

.platform-activity-timeline__item.has-content .platform-activity-timeline__rail {
  display: none;
}

.platform-activity-timeline__meta {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 8px;
}

.platform-activity-timeline__summary {
  min-width: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.platform-activity-timeline__trailing {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.platform-activity-timeline__summary strong {
  color: #fff;
  font-weight: 400;
}

.platform-activity-timeline__timestamp {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}

.platform-activity-timeline__empty {
  min-height: 160px;
}

.platform-activity-timeline.is-inspector {
  height: clamp(360px, 42dvh, 520px);
  min-height: 360px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: #000;
}

.platform-activity-timeline__inspector-header,
.platform-activity-timeline__inspector-body {
  display: grid;
  grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
  width: 100%;
  min-width: 0;
}

.platform-activity-timeline__inspector-header {
  flex: 0 0 46px;
  min-height: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.platform-activity-timeline__pane-header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  padding: 0 18px;
}

.platform-activity-timeline__pane-header.is-list {
  border-right: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-activity-timeline__pane-header.is-list
  .platform-activity-timeline__header-actions {
  flex: 1 1 auto;
  justify-content: flex-end;
  margin-left: 12px;
}

.platform-activity-timeline__pane-header.is-list
  .platform-activity-timeline__header-actions
  .platform-search {
  width: min(100%, 280px);
  min-width: 0;
  max-width: 280px;
  height: 28px;
  min-height: 28px;
}

.platform-activity-timeline__inspector-body {
  flex: 1 1 auto;
  min-height: 0;
}

.platform-activity-timeline__list-pane,
.platform-activity-timeline__preview-pane {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  overflow: auto;
  scrollbar-width: none;
}

.platform-activity-timeline__list-pane::-webkit-scrollbar,
.platform-activity-timeline__preview-pane::-webkit-scrollbar {
  display: none;
}

.platform-activity-timeline__list-pane {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-activity-timeline__list-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0 0;
}

.platform-activity-timeline__preview-pane {
  padding: 24px;
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__list {
  gap: 2px;
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__item {
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: center;
  width: calc(100% + 24px);
  max-width: none;
  min-height: 42px;
  margin-left: -12px;
  padding: 8px 12px;
  border-radius: 8px;
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__entry {
  padding: 0 0 0 8px;
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__marker {
  margin-top: 0;
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__item.is-interactive
  .platform-activity-timeline__entry:hover {
  background: transparent;
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__item.is-interactive:hover {
  background: rgba(255, 255, 255, 0.0375);
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__item.is-selected {
  background: rgba(255, 255, 255, 0.075);
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__summary,
.platform-activity-timeline.is-inspector
  .platform-activity-timeline__trailing,
.platform-activity-timeline.is-inspector
  .platform-activity-timeline__timestamp {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__summary {
  flex: 1 1 auto;
}

.platform-activity-timeline.is-inspector
  .platform-activity-timeline__trailing {
  max-width: 34%;
}

.platform-activity-timeline__default-preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.platform-activity-timeline__default-preview-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-activity-timeline__default-preview-avatar {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  overflow: hidden;
  border-radius: 50%;
}

.platform-activity-timeline__default-preview-avatar > * {
  width: 100%;
  height: 100%;
}

.platform-activity-timeline__default-preview-summary {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
}

.platform-activity-timeline__default-preview-timestamp {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.platform-activity-timeline__default-preview-content {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

@media (max-width: 680px) {
  .platform-activity-timeline__item {
    grid-template-columns: 24px minmax(0, 1fr);
  }

  .platform-activity-timeline.is-inspector {
    height: auto;
    min-height: 520px;
  }

  .platform-activity-timeline__inspector-header,
  .platform-activity-timeline__inspector-body {
    grid-template-columns: minmax(0, 1fr);
  }

  .platform-activity-timeline__pane-header.is-list,
  .platform-activity-timeline__list-pane {
    border-right: 0;
  }

  .platform-activity-timeline__pane-header.is-preview {
    display: none;
  }

  .platform-activity-timeline__inspector-body {
    grid-template-rows: minmax(220px, 42dvh) minmax(240px, auto);
  }

  .platform-activity-timeline__list-pane {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }
}


.platform-activity-workspace {
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 0;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.platform-activity-workspace__timeline {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.platform-activity-workspace__timeline > .platform-activity-timeline,
.platform-activity-workspace__loading {
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
}


.platform-comment-card {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--platform-comment-card-radius, 15px);
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.platform-comment-card__meta {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 8px;
}

.platform-comment-card.has-actions .platform-comment-card__meta {
  padding-right: 28px;
}

.platform-comment-card__avatar,
.platform-comment-card__reply-avatar,
.platform-comment-reply-composer__avatar {
  display: inline-flex;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  overflow: hidden;
  border-radius: 50%;
}

.platform-comment-card__avatar > img,
.platform-comment-card__avatar > span,
.platform-comment-card__avatar > div,
.platform-comment-card__reply-avatar > img,
.platform-comment-card__reply-avatar > span,
.platform-comment-card__reply-avatar > div,
.platform-comment-reply-composer__avatar > img,
.platform-comment-reply-composer__avatar > span,
.platform-comment-reply-composer__avatar > div {
  width: 100%;
  height: 100%;
}

.platform-comment-card__avatar img,
.platform-comment-card__reply-avatar img,
.platform-comment-reply-composer__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.platform-comment-card__author {
  min-width: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.platform-comment-card__timestamp,
.platform-comment-card__reply-timestamp {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
}

.platform-comment-card__actions.platform-popup-anchor {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 120ms ease,
    visibility 120ms ease;
}

.platform-comment-card.has-actions:hover .platform-comment-card__actions,
.platform-comment-card.has-actions:focus-within .platform-comment-card__actions,
.platform-comment-card__actions.platform-popup-anchor.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.platform-comment-card__actions-trigger.platform-icon-button {
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.platform-comment-card__actions-trigger.platform-icon-button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.platform-comment-card__actions-menu {
  --platform-popup-radius: 10px;
}

.platform-comment-card__content {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.platform-comment-card__content > *,
.platform-comment-card__content .playground-tasks-activity-comment-text {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.platform-comment-card__content > :first-child {
  margin-top: 0;
}

.platform-comment-card__content > :last-child {
  margin-bottom: 0;
}

.platform-comment-card__edit-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  margin-top: 10px;
}

.platform-comment-card__edit-input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 72px;
  max-height: 240px;
  padding: 10px 12px;
  resize: none;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: 0;
  color: #fff;
  background: #000;
  font: inherit;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
}

.platform-comment-card__edit-input:focus {
  border-color: rgba(77, 163, 255, 0.72);
}

.platform-comment-card__edit-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 8px;
}

.platform-comment-card__edit-actions .platform-icon-button {
  border-radius: 50%;
}

.platform-comment-card__edit-error,
.platform-comment-reply-composer__error,
.platform-comment-composer__error {
  color: #ff7777;
  font-size: 11px;
  line-height: 1.4;
}

.platform-comment-card__edit-error {
  margin-top: 6px;
}

.platform-comment-card__replies {
  box-sizing: border-box;
  width: calc(100% + 32px);
  min-width: 0;
  margin: 14px -16px -14px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-comment-card__reply-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-comment-card__reply {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
}

.platform-comment-card__reply + .platform-comment-card__reply {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-comment-card__reply-body {
  min-width: 0;
}

.platform-comment-card__reply-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.platform-comment-card__reply-author {
  min-width: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.platform-comment-card__reply-content {
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.platform-comment-card__reply-content > :first-child {
  margin-top: 0;
}

.platform-comment-card__reply-content > :last-child {
  margin-bottom: 0;
}

.platform-comment-reply-composer {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-comment-reply-composer__input {
  box-sizing: border-box;
  width: 100%;
  min-height: 24px;
  max-height: 96px;
  resize: none;
  overflow-y: auto;
  border: 0;
  outline: 0;
  padding: 3px 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

.platform-comment-reply-composer__input::placeholder,
.platform-comment-composer__input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.platform-comment-reply-composer__submit.platform-icon-button,
.platform-comment-composer__submit.platform-icon-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.15) !important;
}

.platform-comment-reply-composer__submit.platform-icon-button:disabled,
.platform-comment-composer__submit.platform-icon-button:disabled {
  background: rgba(255, 255, 255, 0.075) !important;
}

.platform-comment-reply-composer__submit.platform-icon-button:not(:disabled):hover,
.platform-comment-composer__submit.platform-icon-button:not(:disabled):hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

.platform-comment-reply-composer__error {
  grid-column: 2 / -1;
}

.platform-comment-composer {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--platform-comment-composer-radius, 15px);
  background: rgba(255, 255, 255, 0.075);
  transition:
    border-color 140ms ease,
    background-color 140ms ease;
}

.platform-comment-composer.is-dragging-files {
  border-color: rgba(77, 163, 255, 0.72);
  background: rgba(77, 163, 255, 0.1);
}

.platform-comment-composer.has-avatar {
  padding-left: 52px;
}

.platform-comment-composer__avatar {
  position: absolute;
  top: 18px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  overflow: hidden;
  border-radius: 50%;
}

.platform-comment-composer__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.platform-comment-composer__input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  max-height: 180px;
  resize: none;
  overflow-y: auto;
  border: 0;
  outline: 0;
  padding: 0 72px 36px 0;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

.platform-comment-composer__actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.platform-comment-composer__actions .platform-icon-button {
  border-radius: 50%;
}

.platform-comment-composer__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.platform-comment-composer__attach.platform-icon-button {
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.platform-comment-composer__files {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin-top: 4px;
  padding-right: 72px;
}

.platform-comment-composer__file {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  max-width: min(100%, 280px);
  padding: 5px 6px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.32);
  font-size: 10px;
  line-height: 1.2;
}

.platform-comment-composer__file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-comment-composer__file-remove {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 4px;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  cursor: pointer;
}

.platform-comment-composer__file-remove:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.platform-comment-composer__error {
  margin-top: 8px;
  padding-right: 72px;
}

@media (max-width: 680px) {
  .platform-comment-reply-composer {
    grid-template-columns: 20px minmax(0, 1fr) 28px;
    gap: 8px;
  }
}


.platform-connector-action-detail {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #fff;
  background: transparent;
}

.platform-connector-action-detail__hero {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.platform-connector-action-detail__identity {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.platform-connector-action-detail__logo {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  color: #111;
  background: var(--platform-connector-action-logo-background, #fff);
}

.platform-connector-action-detail__logo > :is(img, svg) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-connector-action-detail__identity-copy {
  min-width: 0;
  padding-top: 1px;
}

.platform-connector-action-detail__identity-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.platform-connector-action-detail__identity-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.platform-connector-action-detail__status.platform-label {
  flex: 0 0 auto;
  margin-top: 1px;
}

.platform-connector-action-detail__action {
  box-sizing: border-box;
  min-width: 0;
  min-height: 52px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-connector-action-detail__action-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.platform-connector-action-detail__action-icon > svg {
  width: 14px;
  height: 14px;
}

.platform-connector-action-detail__action-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.platform-connector-action-detail__action-copy > span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 400;
}

.platform-connector-action-detail__action-copy > strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-connector-action-detail__section {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-connector-action-detail__section > h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-connector-action-detail__section-details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-connector-action-detail__section-details > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-connector-action-detail__section-details > summary::after {
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 140ms ease;
  content: "";
}

.platform-connector-action-detail__section-details[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.platform-connector-action-detail__section-details > summary::-webkit-details-marker {
  display: none;
}

.platform-connector-action-detail__section-details > summary:hover {
  color: #fff;
}

.platform-connector-action-detail__section-surface {
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.0375);
}

.platform-connector-action-detail__section.is-error
  .platform-connector-action-detail__section-surface {
  border-color: rgba(255, 143, 143, 0.16);
  color: #ffaaaa;
  background: rgba(255, 143, 143, 0.05);
}

.platform-connector-action-detail__structured-value {
  min-width: 0;
}

.platform-connector-action-detail__fields {
  min-width: 0;
  margin: 0;
}

.platform-connector-action-detail__field {
  box-sizing: border-box;
  min-width: 0;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
}

.platform-connector-action-detail__field + .platform-connector-action-detail__field {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-connector-action-detail__field dt {
  min-width: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
}

.platform-connector-action-detail__field dd {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.platform-connector-action-detail__field dd > a {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8cc7ff;
  text-decoration: none;
}

.platform-connector-action-detail__field dd > a > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-connector-action-detail__field dd > a:hover {
  color: #fff;
}

.platform-connector-action-detail__nested-section {
  min-width: 0;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-connector-action-detail__structured-value
  > .platform-connector-action-detail__nested-section:first-child {
  border-top: 0;
}

.platform-connector-action-detail__fields + .platform-connector-action-detail__nested-section {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-connector-action-detail__nested-section > h3 {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-connector-action-detail__narrative {
  margin: 0;
  padding: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.platform-connector-action-detail__field .platform-connector-action-detail__narrative {
  padding: 0;
}

.platform-connector-action-detail__nested-section > .platform-connector-action-detail__narrative {
  padding: 0;
}

.platform-connector-action-detail__collection-shell {
  min-width: 0;
}

.platform-connector-action-detail__collection-count {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-connector-action-detail__collection {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-connector-action-detail__collection-item {
  min-width: 0;
  padding: 11px 12px;
}

.platform-connector-action-detail__collection-item
  + .platform-connector-action-detail__collection-item {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-connector-action-detail__collection-title {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-connector-action-detail__collection-item .platform-connector-action-detail__fields,
.platform-connector-action-detail__collection-item
  .platform-connector-action-detail__nested-section {
  margin: 0 -12px -11px;
}

.platform-connector-action-detail__collection-item .platform-connector-action-detail__field {
  padding-left: 12px;
  padding-right: 12px;
}

.platform-connector-action-detail__more {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-connector-action-detail__more > summary,
.platform-connector-action-detail__technical > summary {
  cursor: pointer;
  list-style: none;
}

.platform-connector-action-detail__more > summary::-webkit-details-marker,
.platform-connector-action-detail__technical > summary::-webkit-details-marker {
  display: none;
}

.platform-connector-action-detail__more > summary {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.platform-connector-action-detail__more > summary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.platform-connector-action-detail__more[open] > summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-connector-action-detail__muted,
.platform-connector-action-detail__empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.platform-connector-action-detail__section-surface > .platform-connector-action-detail__muted {
  padding: 12px;
}

.platform-connector-action-detail__redacted {
  color: rgba(255, 255, 255, 0.42);
  font-style: italic;
}

.platform-connector-action-detail__technical {
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-connector-action-detail__technical > summary {
  padding: 14px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-connector-action-detail__technical > summary:hover {
  color: rgba(255, 255, 255, 0.8);
}

.platform-connector-action-detail__technical-body {
  min-width: 0;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.platform-connector-action-detail__technical-body section {
  min-width: 0;
}

.platform-connector-action-detail__technical-body h2 {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-connector-action-detail__technical-body pre {
  box-sizing: border-box;
  max-height: 320px;
  margin: 0;
  overflow: auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.025);
  font:
    400 10px / 1.55 ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 640px) {
  .platform-connector-action-detail {
    padding: 18px;
  }

  .platform-connector-action-detail__hero {
    gap: 10px;
  }

  .platform-connector-action-detail__field {
    gap: 4px;
  }
}


.platform-subtasks {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  flex: 0 0 auto;
  align-self: stretch;
  padding: 12px 24px;
  overflow: visible;
}

.platform-subtasks__header {
  min-width: 0;
  min-height: 28px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-subtasks__title {
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-subtasks__add {
  margin-left: auto;
}

button.platform-subtasks__add.platform-button {
  padding-right: 0 !important;
}

button.platform-subtasks__add.platform-button.is-secondary,
button.platform-subtasks__add.platform-button.is-secondary:hover:not(:disabled),
button.platform-subtasks__add.platform-button.is-secondary.is-active {
  background: transparent !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.platform-subtasks__content {
  min-width: 0;
  margin-top: 10px;
}

.platform-subtasks__list {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-subtasks__ticket-item.is-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.platform-subtasks__empty {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 16px;
  text-align: center;
}

.platform-subtasks__empty-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.platform-subtasks__empty-title {
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-subtasks__empty-description {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-subtasks.is-minimal {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.platform-subtasks.is-minimal .platform-subtasks__header {
  min-height: 28px;
  padding-bottom: 0;
  border-bottom: 0;
}

.platform-subtasks.is-minimal .platform-subtasks__title {
  color: rgba(255, 255, 255, 0.7);
}

.platform-subtasks.is-minimal .platform-subtasks__add-icon {
  margin-left: auto;
}

.platform-subtasks.is-minimal .platform-subtasks__content {
  margin-top: 8px;
}

.platform-subtasks.is-minimal .platform-subtasks__list {
  gap: 2px;
}

.platform-subtasks.is-minimal .platform-subtasks__empty {
  min-height: 0;
  padding: 0;
}

.platform-subtasks.is-minimal .platform-subtasks__empty.is-action-only {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}

.platform-subtasks.is-minimal .platform-subtasks__empty-add.platform-button {
  padding: 0 !important;
}


.platform-ticket-item.is-list.is-minimalistic-ui {
  padding-left: 0;
  padding-right: 0;
  border: none;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}


.platform-file-explorer-modal.platform-modal-surface {
  --platform-modal-sidebar-width: 224px;
  --platform-modal-pane-header-height: 94px;
  width: min(980px, calc(100vw - 48px));
  max-width: 980px;
  height: min(620px, calc(100dvh - 48px));
  max-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: transparent !important;
}

.platform-file-explorer-modal.platform-modal-surface.has-preview {
  width: min(1260px, calc(100vw - 48px));
  max-width: 1260px;
}

.platform-file-explorer-modal.platform-modal-surface.has-no-navigation {
  --platform-modal-pane-header-height: 56px;
}

.platform-file-explorer-modal.has-no-navigation .platform-file-explorer__content-header {
  padding-bottom: 12px;
}

.platform-file-explorer-modal__body.platform-modal-body {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
}

.platform-file-explorer__sidebar .platform-modal-sidebar__header,
.platform-file-explorer__content-header {
  padding: 12px;
  min-height: auto;
}

.platform-file-explorer__sidebar .platform-modal-sidebar__header {
  height: 54px;
  border-bottom: 0;
}

.platform-file-explorer__sidebar.has-no-header .platform-modal-sidebar__header {
  display: none;
}

.platform-file-explorer__sidebar {
  background: rgba(0, 0, 0, 0.5);
}

.platform-file-explorer__sidebar-body {
  display: flex;
  flex-direction: column;
}

.platform-file-explorer__sidebar-header-content {
  width: 100%;
  height: 30px;
  max-height: 30px;
  flex: 1 1 auto;
  overflow: visible;
}

.platform-file-explorer__sidebar-header-content .platform-search {
  width: 100% !important;
  min-width: 0;
  height: 30px;
  min-height: 30px;
  margin-left: 0;
}

.platform-file-explorer__content-header {
  align-items: stretch;
  padding-bottom: 0;
  border-bottom: 0;
}

.platform-file-explorer__content,
.platform-file-explorer__content-header,
.platform-file-explorer__content-body,
.platform-file-explorer__content-footer {
  background: #1a1a1a;
}

.platform-file-explorer__content-header-layout {
  min-width: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-file-explorer__content-header-row {
  min-width: 0;
  width: 100%;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.platform-file-explorer__content-header-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
}

.platform-file-explorer__content-navigation {
  min-width: 0;
  width: 100%;
  flex: 0 0 auto;
  margin-top: auto;
}

.platform-file-explorer__close {
  margin-left: auto;
}

.platform-file-explorer__content-body {
  padding: 12px;
  padding-top: 2px;
  align-items: stretch;
}

.platform-file-explorer__main {
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.platform-file-explorer__preview {
  box-sizing: border-box;
  width: 320px;
  min-width: 0;
  min-height: 0;
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1a;
}

.platform-file-explorer__preview-header {
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  min-height: auto;
  max-height: 56px;
  padding: 12px;
  display: flex;
  flex: 0 0 56px;
  align-items: center;
  gap: 12px;
}

.platform-file-explorer__preview-title {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-file-explorer__preview-close {
  margin-left: auto;
}

.platform-file-explorer__preview-body {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.platform-file-explorer__content-footer {
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-file-explorer__content-footer:empty {
  display: none;
}

.platform-file-explorer__thumbnail {
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 5px;
  border-radius: 4px;
  object-fit: cover;
  background: transparent;
}

.platform-file-explorer__file-icon {
  display: block;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.72);
}

.platform-file-explorer__file-icon.is-asset {
  object-fit: contain;
}

.platform-file-explorer__file-icon.is-image {
  color: rgba(255, 255, 255, 0.88);
}

.platform-file-explorer-browser {
  display: grid;
  grid-template-columns: minmax(210px, 252px) minmax(0, 1fr);
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #000;
}

.platform-file-explorer-browser.without-source-rail {
  grid-template-columns: minmax(0, 1fr);
}

.platform-file-explorer-browser__sidebar {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.025);
}

.platform-file-explorer-browser__content {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
}

.platform-file-explorer-browser__header {
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-file-explorer-browser__header .tb-file-browser-header {
  min-height: 56px;
  padding: 0 18px;
}

.platform-file-explorer-browser__header .tb-file-browser-tabs {
  padding: 0 18px;
}

.platform-file-explorer-browser__main {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
}

.platform-file-explorer-browser__main .tb-file-browser-list {
  min-height: 0;
}

@media (max-width: 760px) {
  .platform-file-explorer-browser {
    grid-template-columns: minmax(0, 1fr);
  }

  .platform-file-explorer-browser__sidebar {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }

  .platform-file-explorer-browser__sidebar .tb-file-browser-sidebar-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
  }

  .platform-file-explorer-browser__sidebar .tb-file-browser-sidebar-title {
    display: none;
  }

  .platform-file-explorer-browser__sidebar .tb-file-browser-sidebar-list {
    display: flex;
  }
}

/* Canonical browser composition. Keep layout styling here so every file picker
   receives the same source rail, toolbar, list, preview, and footer treatment. */
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-sidebar-section {
  padding: 0 12px 12px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-sidebar-section:first-child {
  padding-top: 12px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-sidebar-section-environments {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-sidebar-title {
  margin: 0 0 8px;
  padding: 0 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 400;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-sidebar-list-environments {
  max-height: min(296px, calc(100vh - 280px));
  overflow-y: auto;
  padding-right: 4px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-source-row {
  width: 100%;
  min-height: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #9ca3af;
  text-align: left;
  cursor: pointer;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-source-row:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-source-row.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-source-row.disabled {
  opacity: 0.65;
  cursor: default;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-source-icon,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-source-brand-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  object-fit: contain;
}

.platform-file-explorer-modal.is-browser-layout
  .tb-file-browser-header-icon
  .tb-file-browser-source-icon,
.platform-file-explorer-modal.is-browser-layout
  .tb-file-browser-header-icon
  .tb-file-browser-source-brand-icon {
  width: 16px;
  height: 16px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-source-label {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-source-note {
  margin-left: auto;
  color: #6b7280;
  font-size: 9px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-main {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-header {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-nav-button,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-toolbar-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #d1d5db;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-nav-button {
  width: 24px;
  height: 24px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-toolbar-button {
  width: 28px;
  height: 28px;
  color: #9ca3af;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-nav-button:hover:enabled,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-toolbar-button:hover:enabled {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-nav-button:disabled,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-toolbar-button:disabled {
  color: #4b5563;
  opacity: 0.5;
  cursor: default;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-nav-icon {
  width: 16px;
  height: 16px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-toolbar-icon {
  width: 14px;
  height: 14px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-header-title {
  min-width: 0;
  max-width: min(240px, 28%);
  flex: 0 1 240px;
  display: inline-flex;
  align-items: center;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-account-selector-trigger {
  min-width: 0;
  max-width: 100%;
  min-height: 28px;
  color: #fff;
  font-size: 14px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-account-selector-trigger .platform-selector__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-account-selector-popup {
  z-index: 2147483002 !important;
  min-width: 220px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumbs {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumbs::-webkit-scrollbar {
  display: none;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumb-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumb-sep {
  color: #6b7280;
  font-size: 12px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumb {
  padding: 0;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 12px;
  cursor: pointer;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumb:disabled {
  opacity: 1;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumb.active,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumb:hover {
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-breadcrumb.active {
  font-size: 14px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-header-search.platform-search {
  width: min(300px, 45%);
  min-width: 180px;
  height: 30px;
  min-height: 30px;
  flex: 0 1 300px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-tabs {
  width: 100%;
  flex: 0 0 auto;
}

.platform-file-explorer-modal.is-browser-layout
  .tb-file-browser-tabs
  .platform-detail-tab-bar__list {
  gap: 20px;
}

.platform-file-explorer-modal.is-browser-layout
  .tb-file-browser-tabs
  .platform-detail-tab-bar__tab {
  min-height: 24px;
  padding-bottom: 5px;
  font-size: 12px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-list {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-list-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-loading-state {
  height: 100%;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-empty {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #6b7280;
  font-size: 13px;
  text-align: center;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item {
  box-sizing: border-box;
  width: 100%;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item.selected {
  background: rgba(255, 255, 255, 0.1);
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item.preview {
  background: rgba(255, 255, 255, 0.15);
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-leading {
  width: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #9ca3af;
  cursor: pointer;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-leading:hover {
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-folder-chevron {
  width: 14px;
  height: 14px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-folder-chevron-spin,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-loader {
  animation: tb-file-browser-spin 1s linear infinite;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-check {
  margin-right: 4px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-check:not(.platform-checkbox) {
  width: 12px;
  height: 12px;
  border: 1px solid #6b7280;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-file-explorer-modal.is-browser-layout
  .tb-file-browser-check:not(.platform-checkbox).selected {
  border-color: #3b82f6;
  background: #3b82f6;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-check-icon {
  width: 10px;
  height: 10px;
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-icon {
  box-sizing: border-box;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  padding: 5px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-thumbnail {
  flex-shrink: 0;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-icon-file {
  color: #d1d5db;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-icon-video {
  color: #a78bfa;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-icon-audio {
  color: #4ade80;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-icon-asset {
  object-fit: contain;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-name {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-rename {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-rename-input {
  box-sizing: border-box;
  min-width: 0;
  height: 28px;
  flex: 1 1 auto;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  outline: 0;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  font-size: 12px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-rename-input:focus {
  border-color: rgba(77, 163, 255, 0.72);
}

.platform-file-explorer-modal.is-browser-layout
  .tb-file-browser-item-rename-input[aria-invalid="true"] {
  border-color: rgba(245, 59, 58, 0.72);
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-actions,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-rename-action {
  flex: 0 0 auto;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-actions-trigger {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.6);
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-actions-trigger:hover,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-actions-trigger.is-active {
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-branch-slot {
  min-width: 120px;
  max-width: 156px;
  flex-shrink: 0;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-branch-select {
  width: 100%;
  height: 28px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-branch-select:hover {
  border-color: transparent;
  background: transparent;
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-branch-select:focus {
  border-color: transparent;
  background: transparent;
  outline: none;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-branch-select:disabled {
  opacity: 0.65;
  cursor: default;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-children {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-meta,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-size {
  flex-shrink: 0;
  color: #9ca3af;
  font-size: 12px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-item-size {
  width: 64px;
  text-align: right;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-screen {
  min-height: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-card,
.platform-file-explorer-modal.is-browser-layout .tb-file-browser-empty-state {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-icon-wrap {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-icon {
  width: 40px;
  height: 40px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-title {
  margin: 0 0 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-copy {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-button {
  padding: 8px 24px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-button:hover:enabled {
  background: #f3f4f6;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-auth-button:disabled {
  opacity: 0.5;
  cursor: default;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-header {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-art {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-loader {
  width: 24px;
  height: 24px;
  color: #9ca3af;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-text {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  color: #d1d5db;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  font-size: 8px;
  line-height: 1.3;
  white-space: pre-wrap;
  word-break: break-word;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-glyph {
  width: 48px;
  height: 48px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-glyph-folder {
  color: #f0b94f;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-glyph-file {
  color: #60a5fa;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-name {
  width: 100%;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  word-break: break-word;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-subtitle {
  margin: 4px 0 0;
  color: #9ca3af;
  font-size: 12px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-info {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 16px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-info-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  color: #9ca3af;
  font-size: 12px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-info-row span:last-child {
  color: #fff;
  text-align: right;
  word-break: break-word;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-preview-empty {
  min-height: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: #6b7280;
  font-size: 12px;
  text-align: center;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-footer-button {
  min-width: 0;
  min-height: 28px;
  flex: 1 1 120px;
  padding: 4px 12px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3333333;
  white-space: nowrap;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-footer-button-secondary {
  max-width: 80px;
  flex-basis: 80px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-footer-button-primary {
  max-width: 136px;
  flex-basis: 136px;
  background: #2563eb;
  color: #fff;
}

.platform-file-explorer-modal.is-browser-layout
  .tb-file-browser-footer-button-secondary:hover:enabled {
  background: rgba(255, 255, 255, 0.15);
}

.platform-file-explorer-modal.is-browser-layout
  .tb-file-browser-footer-button-primary:hover:enabled {
  background: #1d4ed8;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-footer-button-content {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-footer-button-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-footer-button-spinner {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-width: 1.75px;
}

.platform-file-explorer-modal.is-browser-layout .tb-file-browser-footer-button:disabled {
  opacity: 0.5;
}

.tb-file-browser-item-actions-menu.platform-popup-surface {
  --platform-popup-font-size: 12px;
  --platform-popup-icon-size: 13px;
  min-width: 164px;
}

/*
 * The file browser uses a deliberately high backdrop z-index so it can sit
 * above the composer and the rest of the thread surface.  These two menus are
 * portaled to document.body by the shared popup primitives, so they must opt
 * into the same stacking layer or they end up visually (and interactively)
 * behind the explorer backdrop.
 */
.tb-file-browser-item-actions-menu.platform-popup-surface.is-portaled,
.tb-file-browser-item-branch-popup.platform-popup-surface.is-portaled,
.tb-file-browser-account-selector-popup.platform-popup-surface.is-portaled {
  z-index: 2147483001 !important;
}

.tb-file-browser-item-actions-menu.platform-popup-surface .tb-popup-row {
  padding: 9px 12px;
}

@keyframes tb-file-browser-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .platform-file-explorer-modal.platform-modal-surface {
    --platform-modal-sidebar-width: min(180px, 38vw);
    width: calc(100vw - 24px);
    height: calc(100dvh - 24px);
    max-height: none;
  }

  .platform-file-explorer {
    position: relative;
  }

  .platform-file-explorer__preview {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, calc(100% - var(--platform-modal-sidebar-width)));
    flex-basis: auto;
    box-shadow: -12px 0 30px rgba(0, 0, 0, 0.3);
  }
}


.platform-data-table {
  --platform-data-table-columns: minmax(0, 1fr);
  --platform-data-table-row-min-height: 58px;
  --platform-data-table-sticky-top: 0px;
  --platform-data-table-surface: rgba(255, 255, 255, 0.075);
  --platform-data-table-body-background: transparent;
  --platform-data-table-row-background: transparent;
  --platform-data-table-header-background: transparent;
  --platform-data-table-border: rgba(255, 255, 255, 0.075);
  --platform-data-table-sticky-background: transparent;
  --platform-data-table-minimal-inline-padding: 6px;
  --platform-data-table-row-group-gap: 10px;
  --platform-data-table-row-group-chevron-size: 15px;
  --platform-data-table-row-group-indicator-size: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  color: #fff;
  overflow: visible;
}

.platform-data-table.is-fill-layout {
  flex: 0 1 auto;
  min-height: 0;
  height: auto;
  max-height: 100%;
  overflow: hidden;
}

.platform-data-table__surface {
  box-sizing: border-box;
  position: relative;
  min-width: 0;
  border: 1px solid var(--platform-data-table-border);
  border-radius: 10px;
  background: var(--platform-data-table-surface);
  overflow: visible;
}

.platform-data-table.is-fill-layout > .platform-data-table__surface {
  flex: 0 1 auto;
  min-height: 0;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--platform-data-table-surface);
}

.platform-data-table__table,
.platform-data-table__scroll {
  min-width: 0;
}

.platform-data-table__scroll {
  box-sizing: border-box;
  width: calc(100% - 6px);
  margin-right: 3px;
  margin-left: 3px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.platform-data-table.is-fill-layout .platform-data-table__table {
  flex: 0 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.platform-data-table.is-fill-layout .platform-data-table__scroll {
  flex: 0 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.platform-data-table.is-fill-layout .platform-data-table__scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.platform-data-table__incremental-loading {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.platform-data-table.is-glass .platform-data-table__surface {
  background: rgba(0, 0, 0, 0.82);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}

.platform-data-table__sticky {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  border-radius: 9px 9px 0 0;
  background: var(--platform-data-table-sticky-background);
}

.platform-data-table.has-sticky-header .platform-data-table__table > .platform-data-table__sticky {
  position: sticky;
  top: var(--platform-data-table-sticky-top);
}

.platform-data-table__header-group {
  overflow: hidden;
  border-radius: 9px 9px 0 0;
}

.platform-data-table__toolbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 36px;
  padding: 0 4px;
  background: transparent;
}

.platform-data-table.is-fill-layout > .platform-data-table__toolbar {
  flex: 0 0 auto;
}

.platform-data-table__toolbar-title {
  flex: 0 0 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-data-table__toolbar-leading,
.platform-data-table__toolbar-controls-leading,
.platform-data-table__toolbar-trailing,
.platform-data-table__toolbar-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.platform-data-table__toolbar-controls {
  flex: 0 1 auto;
  max-width: 100%;
  justify-content: flex-end;
}

.platform-data-table__toolbar-trailing {
  flex: 0 0 auto;
}

.platform-data-table__toolbar-controls-leading {
  flex: 0 0 auto;
}

.platform-data-table__toolbar-spacer {
  min-width: 0;
  flex: 1 1 auto;
}

.platform-data-table__search {
  flex: 0 0 300px;
  width: 300px;
  min-width: 300px;
}

.platform-data-table__toolbar-button,
.platform-data-table__primary-action {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 28px;
  padding: 0 12px;
  border: 0;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
}

.platform-data-table__toolbar-button:hover,
.platform-data-table__toolbar-button.is-open {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.platform-data-table__toolbar-button.is-icon-only {
  width: 28px;
  min-width: 28px;
  padding: 0;
  gap: 0;
}

.platform-data-table__primary-action {
  flex: 0 0 auto;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

.platform-data-table__toolbar-button:disabled,
.platform-data-table__primary-action:disabled {
  opacity: 0.5;
  cursor: default;
}

.platform-data-table__primary-action-icon,
.platform-data-table__view-icon {
  flex: 0 0 auto;
}

.platform-data-table__view-switch {
  box-sizing: border-box;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  height: 28px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
}

.platform-data-table__view-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  cursor: pointer;
}

.platform-data-table__view-switch button:hover,
.platform-data-table__view-switch button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.platform-data-table__header,
.platform-data-table__row {
  display: grid;
  grid-template-columns: var(--platform-data-table-columns);
  align-items: center;
  gap: 12px;
  min-width: 0;
  width: 100%;
  padding-right: 18px;
  padding-left: 18px;
}

.platform-data-table__row-group {
  min-width: 0;
}

.platform-data-table__row-group:last-child > .platform-data-table__row,
.platform-data-table__row-group:last-child > .platform-data-table__expanded-row {
  border-bottom: 0;
}

.platform-data-table__row-group.is-expanded > .platform-data-table__row {
  border-bottom-color: rgba(255, 255, 255, 0.055);
}

.platform-data-table__expanded-row {
  min-width: 0;
  padding: 0 18px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.018);
}

.platform-data-table__expanded-cell {
  min-width: 0;
}

.platform-data-table__header {
  min-height: 40px;
  padding-right: 21px;
  padding-left: 21px;
  padding-top: 0;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  border-bottom: 0;
  background: var(--platform-data-table-header-background);
}

.platform-data-table__header-cell,
.platform-data-table__cell {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  white-space: nowrap;
}

.platform-data-table__header-cell.is-active {
  color: #fff;
}

.platform-data-table__header-cell.is-selection,
.platform-data-table__cell.is-selection {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.platform-data-table__header-cell.is-actions,
.platform-data-table__cell.is-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

.platform-data-table__sortable-header {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  max-width: 100%;
}

.platform-data-table__header-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-data-table__column-sort-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.platform-data-table__column-sort-button:focus-visible,
.platform-data-table__action-button:focus-visible,
.platform-data-table__group-toggle:focus-visible,
.platform-data-table__checkbox:focus-visible,
.platform-data-table__toolbar-button:focus-visible,
.platform-data-table__primary-action:focus-visible,
.platform-data-table__view-switch button:focus-visible,
.platform-data-table__page-button:focus-visible,
.platform-data-table__page-size select:focus-visible,
.platform-data-table__menu-item:focus-visible {
  outline: 1px solid rgba(126, 255, 255, 0.8);
  outline-offset: 2px;
}

.platform-data-table__sort-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.3);
}

.platform-data-table__sort-icon-layer {
  position: absolute;
  inset: 0;
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.3);
}

.platform-data-table__sort-icon-layer.is-top {
  clip-path: inset(0 0 50% 0);
}

.platform-data-table__sort-icon-layer.is-bottom {
  clip-path: inset(50% 0 0 0);
}

.platform-data-table__sort-icon.is-bottom-active .platform-data-table__sort-icon-layer.is-bottom,
.platform-data-table__sort-icon.is-top-active .platform-data-table__sort-icon-layer.is-top {
  color: #fff;
}

.platform-data-table__body {
  min-width: 0;
  overflow: hidden;
  border-radius: 0 0 9px 9px;
  background: var(--platform-data-table-body-background);
}

.platform-data-table.is-fill-layout .platform-data-table__body {
  flex: 1 0 auto;
}

.platform-data-table.is-fill-layout .platform-data-table__body.has-state {
  display: flex;
}

.platform-data-table.is-fill-layout .platform-data-table__body.has-state > .platform-data-table__state {
  flex: 1 1 auto;
  width: 100%;
}

.platform-data-table.is-fill-layout .platform-data-table__body.has-state > .platform-data-table__state-row {
  flex: 1 1 auto;
  width: 100%;
}

.platform-data-table.has-pagination .platform-data-table__body,
.platform-data-table.has-pagination .platform-data-table__footer {
  border-radius: 0;
}

.platform-data-table__group-header,
.platform-data-table__group-cell {
  min-width: 0;
  width: 100%;
}

.platform-data-table__group-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--platform-data-table-row-background);
}

.platform-data-table__group-toggle {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: var(--platform-data-table-row-group-gap);
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.platform-data-table__group-toggle:hover {
  background: rgba(255, 255, 255, 0.025);
}

.platform-data-table__group-chevron {
  width: var(--platform-data-table-row-group-chevron-size);
  height: var(--platform-data-table-row-group-chevron-size);
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.46);
  transition: transform 140ms ease;
}

.platform-data-table__group-header.is-collapsed
  .platform-data-table__group-chevron {
  transform: rotate(-90deg);
}

.platform-data-table__group-indicator {
  width: var(--platform-data-table-row-group-indicator-size);
  height: var(--platform-data-table-row-group-indicator-size);
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--platform-data-table-row-group-color, #4da3ff);
}

.platform-data-table__group-label {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-data-table__group-count {
  min-width: 18px;
  padding: 2px 5px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.platform-data-table__row {
  min-height: var(--platform-data-table-row-min-height);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--platform-data-table-row-background);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  transition: background-color 120ms ease, color 120ms ease;
}

.platform-data-table__row[tabindex]:hover,
.platform-data-table__row.is-menu-open,
.platform-data-table__row.is-selected {
  background: rgba(255, 255, 255, 0.0375);
}

.platform-data-table__row[tabindex] {
  cursor: pointer;
}

.platform-data-table__row:focus-visible {
  outline: 1px solid rgba(126, 255, 255, 0.72);
  outline-offset: -1px;
}

.platform-data-table__row.is-disabled {
  opacity: 0.5;
  cursor: default;
}

.platform-data-table__action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.platform-data-table__action-button:hover,
.platform-data-table__action-button.is-open {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.platform-data-table__state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 124px;
  padding: 28px 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  text-align: center;
}

.platform-data-table__state-row {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  width: 100%;
  background: transparent;
}

.platform-data-table__state-row > .platform-data-table__state {
  min-width: 0;
  width: 100%;
}

.platform-data-table__state-row > .platform-data-table__state.is-empty {
  padding-top: 42px;
  padding-bottom: 42px;
}

.platform-data-table__state.is-error {
  color: #ff8f8f;
}

.platform-data-table__footer {
  flex: 0 0 auto;
  padding: 12px 21px;
  border-top: 0;
  border-radius: 0 0 9px 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.platform-data-table__pagination {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  min-height: 36px;
  padding: 3px 21px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  border-top: 0;
  border-radius: 0 0 9px 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 400;
}

.platform-data-table.is-minimalistic-ui .platform-data-table__surface {
  border: 0;
  border-radius: 0;
}

.platform-data-table.is-fill-layout.is-minimalistic-ui > .platform-data-table__surface {
  background: #000;
}

.platform-data-table.is-minimalistic-ui .platform-data-table__sticky,
.platform-data-table.is-minimalistic-ui .platform-data-table__header-group {
  border-radius: 0;
  background: #000;
}

.platform-data-table.is-minimalistic-ui .platform-data-table__header {
  padding-right: var(--platform-data-table-minimal-inline-padding);
  padding-left: var(--platform-data-table-minimal-inline-padding);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.platform-data-table.is-minimalistic-ui .platform-data-table__scroll {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  border-radius: 0;
}

.platform-data-table.is-minimalistic-ui .platform-data-table__body,
.platform-data-table.is-minimalistic-ui .platform-data-table__row,
.platform-data-table.is-minimalistic-ui .platform-data-table__expanded-row {
  border-radius: 0;
  border-bottom: 0;
}

.platform-data-table.is-minimalistic-ui .platform-data-table__row,
.platform-data-table.is-minimalistic-ui .platform-data-table__expanded-row {
  padding-right: var(--platform-data-table-minimal-inline-padding);
  padding-left: var(--platform-data-table-minimal-inline-padding);
}

.platform-data-table.is-minimalistic-ui .platform-data-table__footer,
.platform-data-table.is-minimalistic-ui .platform-data-table__pagination {
  padding-right: var(--platform-data-table-minimal-inline-padding);
  padding-left: var(--platform-data-table-minimal-inline-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: #000;
}

.platform-data-table.is-catalog-ui {
  --platform-data-table-catalog-viewport-gutter: 24px;
  --platform-data-table-catalog-column-inset: 8px;
  --platform-data-table-catalog-inline-padding: calc(
    var(--platform-data-table-catalog-viewport-gutter) +
      var(--platform-data-table-catalog-column-inset)
  );
  width: calc(
    100% + var(--platform-data-table-catalog-viewport-gutter) +
      var(--platform-data-table-catalog-viewport-gutter)
  );
  margin-right: calc(
    0px - var(--platform-data-table-catalog-viewport-gutter)
  );
  margin-left: calc(
    0px - var(--platform-data-table-catalog-viewport-gutter)
  );
  gap: 16px;
}

.platform-data-table.is-catalog-ui .platform-data-table__toolbar {
  box-sizing: border-box;
  width: 100%;
  min-height: 0;
  padding-right: var(--platform-data-table-catalog-viewport-gutter);
  padding-left: var(--platform-data-table-catalog-viewport-gutter);
  align-items: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 12px;
}

.platform-data-table.is-catalog-ui .platform-data-table__toolbar-controls {
  flex: 1 1 100%;
  width: 100%;
  max-width: none;
  justify-content: stretch;
}

.platform-data-table.is-catalog-ui
  .platform-data-table__toolbar:not(.has-title-line) {
  row-gap: 0;
}

.platform-data-table.is-catalog-ui
  .platform-data-table__toolbar:not(.has-title-line)
  .platform-data-table__toolbar-spacer {
  display: none;
}

.platform-data-table.is-catalog-ui .platform-data-table__search {
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  height: 40px;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.075);
}

.platform-data-table.is-catalog-ui .platform-data-table__surface {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.platform-data-table.is-fill-layout.is-catalog-ui > .platform-data-table__surface {
  background: #000;
}

.platform-data-table.is-catalog-ui .platform-data-table__sticky,
.platform-data-table.is-catalog-ui .platform-data-table__header-group {
  border-radius: 0;
  background: #000;
}

.platform-data-table.is-catalog-ui .platform-data-table__header {
  min-height: 44px;
  padding-right: var(--platform-data-table-catalog-inline-padding);
  padding-left: var(--platform-data-table-catalog-inline-padding);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
}

.platform-data-table.is-catalog-ui .platform-data-table__scroll {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  border-radius: 0;
}

.platform-data-table.is-catalog-ui .platform-data-table__body,
.platform-data-table.is-catalog-ui .platform-data-table__row,
.platform-data-table.is-catalog-ui .platform-data-table__expanded-row {
  border-radius: 0;
  border-bottom: 0;
}

.platform-data-table.is-catalog-ui .platform-data-table__row,
.platform-data-table.is-catalog-ui .platform-data-table__expanded-row {
  padding-right: var(--platform-data-table-catalog-inline-padding);
  padding-left: var(--platform-data-table-catalog-inline-padding);
}

.platform-data-table.is-catalog-ui .platform-data-table__group-toggle {
  min-height: 48px;
  padding-right: var(--platform-data-table-catalog-inline-padding);
  padding-left: var(--platform-data-table-catalog-inline-padding);
}

.platform-data-table.is-catalog-ui
  .platform-data-table__row-group.is-grouped-row
  > .platform-data-table__row,
.platform-data-table.is-catalog-ui
  .platform-data-table__row-group.is-grouped-row
  > .platform-data-table__expanded-row {
  padding-left: calc(
    var(--platform-data-table-catalog-inline-padding) +
      var(--platform-data-table-row-group-chevron-size) +
      var(--platform-data-table-row-group-gap)
  );
}

.platform-data-table.is-catalog-ui
  .platform-data-table__row-group.is-grouped-row.has-group-indicator
  > .platform-data-table__row,
.platform-data-table.is-catalog-ui
  .platform-data-table__row-group.is-grouped-row.has-group-indicator
  > .platform-data-table__expanded-row {
  padding-left: calc(
    var(--platform-data-table-catalog-inline-padding) +
      var(--platform-data-table-row-group-chevron-size) +
      var(--platform-data-table-row-group-gap) +
      var(--platform-data-table-row-group-indicator-size) +
      var(--platform-data-table-row-group-gap)
  );
}

.platform-data-table.is-catalog-ui
  .platform-data-table__row-group.is-section-end:not(.is-expanded)
  > .platform-data-table__row,
.platform-data-table.is-catalog-ui
  .platform-data-table__row-group.is-section-end
  > .platform-data-table__expanded-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-data-table.is-catalog-ui .platform-data-table__row {
  padding-top: 14px;
  padding-bottom: 14px;
}

.platform-data-table.is-catalog-ui .platform-data-table__footer,
.platform-data-table.is-catalog-ui .platform-data-table__pagination {
  padding-right: var(--platform-data-table-catalog-inline-padding);
  padding-left: var(--platform-data-table-catalog-inline-padding);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: #000;
}

.platform-data-table__page-size,
.platform-data-table__page-size-control,
.platform-data-table__page-actions {
  display: inline-flex;
  align-items: center;
}

.platform-data-table__page-size {
  gap: 8px;
  margin-right: auto;
  white-space: nowrap;
}

.platform-data-table__page-size-control {
  position: relative;
  min-width: 52px;
  height: 26px;
}

.platform-data-table__page-size select {
  width: 100%;
  height: 100%;
  padding: 0 24px 0 8px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 7px;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.platform-data-table__page-size select:hover {
  background: rgba(255, 255, 255, 0.06);
}

.platform-data-table__page-size select:disabled {
  opacity: 0.4;
  cursor: default;
}

.platform-data-table__page-size option {
  background: #171717;
  color: #fff;
}

.platform-data-table__page-size-chevron {
  position: absolute;
  right: 6px;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.5);
}

.platform-data-table__page-range {
  min-width: 86px;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  white-space: nowrap;
}

.platform-data-table__page-actions {
  gap: 6px;
}

.platform-data-table__page-button {
  width: 26px;
  height: 26px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.platform-data-table__page-button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.platform-data-table__page-button:disabled {
  opacity: 0.28;
  cursor: default;
}

.platform-data-table__floating-menu {
  z-index: 12050;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 220px;
  max-height: min(420px, calc(100vh - 16px));
  overflow-x: hidden;
  overflow-y: auto;
}

.platform-data-table__menu-item,
.platform-data-table__menu-heading,
.platform-data-table__menu-separator {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.platform-data-table__menu-item {
  display: flex;
  align-items: center;
  gap: 9px;
  width: calc(100% - 8px);
  min-height: 34px;
  margin: 0 4px;
  padding: 7px 11px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
}

.platform-data-table__menu-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.platform-data-table__menu-item.is-danger {
  color: #ff8f8f;
}

.platform-data-table__menu-item.has-separator {
  margin-top: 5px;
}

.platform-data-table__menu-item.has-separator::before {
  content: "";
  position: absolute;
  right: 7px;
  bottom: calc(100% + 2px);
  left: 7px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.platform-data-table__menu-item:disabled {
  opacity: 0.4;
  cursor: default;
}

.platform-data-table__menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  min-width: 16px;
  color: currentColor;
}

.platform-data-table__menu-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.platform-data-table__menu-label,
.platform-data-table__menu-description {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-data-table__menu-description {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  white-space: normal;
}

.platform-data-table__menu-heading {
  padding: 8px 15px 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.platform-data-table__menu-separator {
  height: 1px;
  margin: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
}

.platform-data-table__dot-loader {
  flex: 0 0 auto;
  line-height: 0;
}

@media (max-width: 760px) {
  .platform-data-table__toolbar {
    align-items: stretch;
    flex-wrap: wrap;
  }

  .platform-data-table__toolbar-controls {
    flex: 1 1 100%;
  }

  .platform-data-table__search {
    flex: 1 1 180px;
    width: auto;
    min-width: 0;
  }

  .platform-data-table__header,
  .platform-data-table__row {
    gap: 9px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .platform-data-table__header {
    padding-right: 15px;
    padding-left: 15px;
  }

  .platform-data-table__expanded-row {
    padding-right: 12px;
    padding-left: 12px;
  }

  .platform-data-table__footer {
    padding-right: 15px;
    padding-left: 15px;
  }

  .platform-data-table__pagination {
    min-height: 38px;
    padding: 3px 15px;
    gap: 12px;
  }

  .platform-data-table__page-size-label {
    display: none;
  }
}


.platform-analytics {
  flex: 0 0 auto;
  min-width: 0;
  overflow: hidden;
  background: transparent;
}

.platform-analytics.is-framed {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  min-height: 438px;
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  color: rgba(255, 255, 255, 0.96);
}

.platform-analytics.is-framed.has-no-metrics {
  min-height: 0;
}

.platform-analytics__header {
  min-width: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.platform-analytics__title {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
}

.platform-analytics__header-actions {
  min-width: 0;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.platform-analytics__metrics {
  min-height: 84px;
  padding: 0 0 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px 24px;
}

.platform-analytics__metric { min-width: 0; }
.platform-analytics__metric-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
}

.platform-analytics__metric-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  box-shadow: 0 0 8px currentColor;
}

.platform-analytics__metric-value {
  margin-top: 7px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 400;
}

.platform-analytics__chart {
  min-width: 0;
}

.platform-analytics.is-compact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: visible;
}

.platform-analytics.is-compact .platform-analytics__header {
  margin-bottom: 0;
}

.platform-analytics.is-compact .platform-analytics__title {
  font-size: 14px;
  font-weight: 400;
}

.platform-analytics.is-compact .platform-analytics__metrics {
  min-height: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.platform-analytics.is-compact .platform-analytics__metric-label {
  gap: 6px;
  font-size: 11px;
}

.platform-analytics.is-compact .platform-analytics__metric-dot {
  width: 5px;
  height: 5px;
  flex-basis: 5px;
  border-radius: 1px;
  box-shadow: none;
}

.platform-analytics.is-compact .platform-analytics__metric-value {
  margin-top: 5px;
  padding-left: 11px;
  color: #fff;
  font-size: 14px;
}

.platform-analytics.is-compact .platform-analytics-chart__frame,
.platform-analytics.is-compact .platform-analytics-chart__state {
  height: 174px;
}

.platform-analytics.is-compact .platform-analytics-chart__frame {
  padding: 0;
}

.platform-analytics.is-framed .platform-analytics__metrics {
  min-height: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.platform-analytics.is-framed .platform-analytics__metric {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.platform-analytics.is-framed .platform-analytics__metric-label {
  gap: 8px;
  line-height: 1.25;
  font-weight: 400;
}

.platform-analytics.is-framed .platform-analytics__metric-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 12%, transparent);
}

.platform-analytics.is-framed .platform-analytics__metric-value {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  line-height: 1.1;
}

.platform-analytics.is-framed .platform-analytics__chart {
  width: 100%;
  flex: 1 1 auto;
  position: relative;
}

.platform-analytics.is-framed .platform-analytics-chart__frame,
.platform-analytics.is-framed .platform-analytics-chart__state {
  height: 284px;
}

.platform-analytics-chart__frame { height: 240px; padding: 6px 0 12px; }
.platform-analytics-chart__frame canvas { width: 100% !important; height: 100% !important; }

.platform-analytics-chart__state {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 12px;
  text-align: center;
}

.platform-analytics-chart__state.is-error { color: #ff8c8c; }
.platform-analytics-chart__loader { color: rgba(255, 255, 255, 0.8); line-height: 0; }

@media (max-width: 760px) {
  .platform-analytics__metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 0 16px; }
  .platform-analytics.is-framed {
    min-height: 0;
    padding: 16px 14px 12px;
  }
  .platform-analytics.is-framed .platform-analytics__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .platform-analytics.is-framed .platform-analytics__header-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .platform-analytics.is-framed .platform-analytics__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
  }
  .platform-analytics-chart__frame,
  .platform-analytics-chart__state { height: 210px; }
  .platform-analytics.is-framed .platform-analytics-chart__frame,
  .platform-analytics.is-framed .platform-analytics-chart__state { height: 240px; }
}


.platform-deployment-map {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: #000;
}

.platform-deployment-map__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  pointer-events: none;
}

.platform-deployment-map__title {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-deployment-map__region {
  min-height: 22px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-deployment-map__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 143 / 54;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.platform-deployment-map__canvas {
  position: relative;
  width: 94%;
  aspect-ratio: 143 / 54;
  flex: 0 0 auto;
}

.platform-deployment-map__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  user-select: none;
  pointer-events: none;
}

.platform-deployment-map__marker {
  position: absolute;
  z-index: 1;
  top: var(--platform-deployment-map-marker-top);
  left: var(--platform-deployment-map-marker-left);
  width: 12px;
  height: 12px;
  display: block;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.platform-deployment-map__marker-core,
.platform-deployment-map__marker-pulse {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 50%;
}

.platform-deployment-map__marker-core {
  z-index: 2;
  border: 2px solid #000;
  background: #4da3ff;
  box-shadow: 0 0 0 1px rgba(77, 163, 255, 0.75);
}

.platform-deployment-map__marker-pulse {
  z-index: 1;
  background: rgba(77, 163, 255, 0.32);
  animation: platform-deployment-map-pulse 2.4s ease-out infinite;
}

.platform-deployment-map__marker-label {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 18px;
  min-height: 22px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(77, 163, 255, 0.35);
  border-radius: 5px;
  color: #fff;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  transform: translateY(-50%);
}

@keyframes platform-deployment-map-pulse {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-deployment-map__marker-pulse {
    animation: none;
    opacity: 0.32;
    transform: scale(1.8);
  }
}

@media (max-width: 700px) {
  .platform-deployment-map__viewport {
    min-height: 210px;
  }

  .platform-deployment-map__canvas {
    width: 92%;
  }
}


.platform-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(100%, 700px);
  margin: 0 auto;
  text-align: center;
}

.platform-empty-state__icon {
  flex: 0 0 auto;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.platform-empty-state__title {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.platform-empty-state__description {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.platform-empty-state__primary-action {
  margin-top: 8px;
}


.platform-loading-state {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.platform-loading-state.is-centered {
  width: 100%;
  min-height: 120px;
  flex: 1 1 auto;
  align-self: stretch;
  justify-content: center;
}

.platform-loading-state__loader {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.platform-loading-state__message {
  min-width: 0;
  color: inherit;
}


.platform-code-editor-workspace {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  align-self: stretch;
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: #000;
  color: rgba(255, 255, 255, 0.9);
}

.platform-code-editor-workspace.is-full-screen {
  width: 100%;
  max-width: none;
  flex: 1 1 0;
  align-self: stretch;
  border: 0;
  border-radius: 0;
}

.platform-code-editor-workspace.is-sidebar-hidden {
  grid-template-columns: minmax(0, 1fr);
}

.platform-code-editor-workspace__sidebar {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.platform-code-editor-workspace__sidebar-header {
  box-sizing: border-box;
  min-width: 0;
  min-height: 42px;
  flex: 0 0 42px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.platform-code-editor-workspace__sidebar-title {
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-code-editor-workspace__sidebar-actions,
.platform-code-editor-workspace__header-actions {
  min-width: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.platform-code-editor-workspace__create-menu-anchor {
  display: inline-flex;
}

.platform-code-editor-workspace__create-menu.platform-popup-surface {
  --platform-popup-padding: 4px;
  --platform-popup-radius: 10px;
  --platform-popup-font-size: 12px;
  --platform-popup-icon-size: 14px;
  z-index: 12062;
}

.platform-code-editor-workspace__file-list {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: auto;
  padding: 8px 10px 12px;
  scrollbar-width: none;
  transition: background-color 160ms ease;
}

.platform-code-editor-workspace__sidebar-header.is-drop-target,
.platform-code-editor-workspace__file-list.is-drop-target {
  background: rgba(77, 163, 255, 0.08);
}

.platform-code-editor-workspace__file-list.is-loading {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.platform-code-editor-workspace__file-loading.platform-loading-state {
  min-height: 0;
}

.platform-code-editor-workspace__file-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.platform-code-editor-workspace__file {
  position: relative;
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

.platform-code-editor-workspace__file[draggable="true"] {
  cursor: grab;
}

.platform-code-editor-workspace__file.is-dragging {
  opacity: 0.45;
}

.platform-code-editor-workspace__file.is-drop-target {
  background: rgba(77, 163, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.5);
}

.platform-code-editor-workspace__file:hover,
.platform-code-editor-workspace__file.is-menu-open {
  background: rgba(255, 255, 255, 0.07);
}

.platform-code-editor-workspace__file.is-active,
.platform-code-editor-workspace__file.is-selected {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.platform-code-editor-workspace__file-checkbox.platform-checkbox {
  flex: 0 0 14px;
}

.platform-code-editor-workspace__file-main {
  min-width: 0;
  min-height: 14px;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.platform-code-editor-workspace__file-main:disabled {
  color: rgba(255, 255, 255, 0.42);
  cursor: default;
}

.platform-code-editor-workspace__file-leading {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}

.platform-code-editor-workspace__file-leading > svg {
  width: 14px;
  height: 14px;
}

.platform-code-editor-workspace__folder-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: rgba(255, 255, 255, 0.6);
  stroke-width: 1.7;
}

.platform-code-editor-workspace__file-label {
  min-width: 0;
  flex: 1 1 0;
  overflow: hidden;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-code-editor-workspace__file-actions {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.platform-code-editor-workspace__file-actions:hover,
.platform-code-editor-workspace__file-actions:focus-visible,
.platform-code-editor-workspace__file-actions[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.platform-code-editor-workspace__file-actions:focus-visible {
  outline: 1px solid rgba(126, 255, 255, 0.8);
  outline-offset: 1px;
}

.platform-code-editor-workspace__file-actions > svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
}

.platform-code-editor-workspace__file-menu-anchor {
  position: fixed;
  z-index: 12061;
}

.platform-code-editor-workspace__file-menu.platform-popup-surface {
  --platform-popup-padding: 4px;
  --platform-popup-radius: 10px;
  --platform-popup-font-size: 12px;
  --platform-popup-icon-size: 14px;
  z-index: 12062;
}

.platform-code-editor-workspace__editor {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}

.platform-code-editor-workspace__editor.is-markdown {
  background: #000;
}

.platform-code-editor-workspace__markdown-editor.platform-instructions-editor {
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.platform-code-editor-workspace
  .platform-code-editor-workspace__markdown-editor.platform-instructions-editor.is-minimalistic-ui
  .platform-instructions-editor__header {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  flex: 0 0 42px;
  padding: 0 10px 0 12px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
}

.platform-code-editor-workspace__markdown-editor
  .platform-instructions-editor__title {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-code-editor-workspace__markdown-editor
  .platform-instructions-editor__toolbar {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.platform-code-editor-workspace__markdown-editor
  .platform-instructions-editor__toolbar::-webkit-scrollbar {
  display: none;
}

.platform-code-editor-workspace
  .platform-code-editor-workspace__markdown-editor.platform-instructions-editor.is-minimalistic-ui
  .platform-instructions-editor__body {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  margin: 0;
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background: #000;
}

.platform-code-editor-workspace__markdown-editor
  .platform-instructions-editor__content-viewport {
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  padding: 18px 20px;
}

.platform-code-editor-workspace
  .platform-code-editor-workspace__markdown-editor.platform-instructions-editor.is-minimalistic-ui
  .platform-instructions-editor__prosemirror {
  min-height: 100%;
  padding: 0;
}

.platform-code-editor-workspace__markdown-editor
  .platform-instructions-editor__readonly {
  min-height: 100%;
  padding: 0;
}

.platform-code-editor-workspace__editor-header {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  flex: 0 0 42px;
  padding: 0 10px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.platform-code-editor-workspace__editor-title {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-code-editor-tab-bar {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  flex: 0 0 42px;
  padding-left: 4px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
  scrollbar-width: none;
}

.platform-code-editor-tab-bar__list {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.platform-code-editor-tab-bar__list::-webkit-scrollbar {
  display: none;
}

.platform-code-editor-tab-bar__actions {
  min-width: 0;
  height: 100%;
  flex: 0 0 auto;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  background: #121212;
}

.platform-code-editor-tab-bar__item {
  position: relative;
  min-width: 120px;
  max-width: 220px;
  height: 36px;
  flex: 0 1 180px;
  margin-top: 6px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-right: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
}

.platform-code-editor-tab-bar__item.is-active {
  border-right: 0;
  border-radius: 8px 8px 0 0;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
}

.platform-code-editor-tab-bar__tab {
  min-width: 0;
  flex: 1 1 auto;
  padding: 0 4px 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.platform-code-editor-tab-bar__tab:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.72);
}

.platform-code-editor-tab-bar__icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.62);
}

.platform-code-editor-tab-bar__icon svg {
  width: 14px;
  height: 14px;
}

.platform-code-editor-tab-bar__label {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-code-editor-tab-bar__close {
  position: relative;
  width: 26px;
  min-width: 26px;
  height: 100%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.platform-code-editor-tab-bar__close-icon {
  width: 13px;
  height: 13px;
  opacity: 0;
}

.platform-code-editor-tab-bar__dirty-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  opacity: 0;
}

.platform-code-editor-tab-bar__item.is-active .platform-code-editor-tab-bar__close-icon,
.platform-code-editor-tab-bar__item:hover .platform-code-editor-tab-bar__close-icon,
.platform-code-editor-tab-bar__close:focus-visible .platform-code-editor-tab-bar__close-icon {
  opacity: 1;
}

.platform-code-editor-tab-bar__item.is-dirty .platform-code-editor-tab-bar__dirty-dot {
  opacity: 1;
}

.platform-code-editor-tab-bar__item.is-dirty:not(:hover)
  .platform-code-editor-tab-bar__close-icon {
  opacity: 0;
}

.platform-code-editor-tab-bar__item.is-dirty:hover .platform-code-editor-tab-bar__dirty-dot,
.platform-code-editor-tab-bar__item.is-dirty
  .platform-code-editor-tab-bar__close:focus-visible
  .platform-code-editor-tab-bar__dirty-dot {
  opacity: 0;
}

.platform-code-editor-tab-bar__close:hover,
.platform-code-editor-tab-bar__close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.platform-code-editor-tab-bar__close:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.72);
}

.platform-code-editor-workspace__editor-body {
  width: 100%;
  max-width: none;
  min-height: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.platform-code-editor-workspace__editor-body > * {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
}

.platform-monaco-code-editor {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  overflow: hidden;
  background: #000;
}

.platform-monaco-code-editor > section,
.platform-monaco-code-editor > .monaco-editor,
.platform-monaco-code-editor > .monaco-editor-background {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 100% !important;
}

.platform-monaco-code-editor .monaco-editor,
.platform-monaco-code-editor .monaco-editor-background,
.platform-monaco-code-editor .monaco-editor .margin,
.platform-monaco-code-editor .monaco-editor .sticky-widget,
.platform-monaco-code-editor .monaco-editor .sticky-widget-lines,
.platform-monaco-code-editor .monaco-editor .sticky-widget-line-numbers,
.platform-monaco-code-editor .monaco-editor .sticky-line-content,
.platform-monaco-code-editor .monaco-editor .sticky-line-number {
  background: #000 !important;
}

.platform-monaco-code-editor .monaco-editor .sticky-widget {
  box-shadow: none !important;
}

.platform-monaco-code-editor__loading.platform-loading-state {
  min-height: 100%;
}

.platform-monaco-code-editor__fallback {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 14px 18px;
  resize: none;
  border: 0;
  outline: 0;
  background: #000;
  color: rgba(255, 255, 255, 0.92);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  line-height: 19px;
  tab-size: 2;
}

.platform-code-editor-workspace__editor-body > .playground-code-preview-editor-shell,
.platform-code-editor-workspace__editor-body > .playground-servers-code-editor-shell {
  height: auto;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.platform-code-editor-workspace__editor-body > .playground-code-preview-editor-shell > *,
.platform-code-editor-workspace__editor-body > .playground-servers-code-editor-shell > * {
  box-sizing: border-box;
  width: 100% !important;
  min-height: 0;
  flex: 1 1 0;
}

.platform-code-editor-workspace__empty {
  min-height: 80px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.platform-code-editor-workspace__empty.is-editor {
  flex: 1;
}


.platform-code-preview-box {
  --platform-code-preview-border: linear-gradient(
    -10deg,
    rgba(200, 200, 200, 0.25),
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.375)
  );
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}

.platform-code-preview-box::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  padding: 1px;
  background: var(--platform-code-preview-border);
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-clip: content-box, border-box;
  mask-composite: exclude;
  mask-origin: content-box, border-box;
  mask-repeat: repeat, repeat;
  mask-size: auto, auto;
}

.platform-code-preview-box > * {
  position: relative;
  z-index: 1;
}

.platform-code-preview-box__inner {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  padding: 28px;
}

.platform-code-preview-box__intro,
.platform-code-preview-box__preview {
  min-width: 0;
}

.platform-code-preview-box__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-code-preview-box__description {
  max-width: 280px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 2;
  font-weight: 400;
}

.platform-code-preview-box__action {
  margin-top: 24px;
}

.platform-code-preview-box__toolbar {
  margin-bottom: 10px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-code-preview-box__languages {
  margin-left: 28px;
}

.platform-code-preview-box__copy:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.platform-code-preview-box__copy {
  appearance: none;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.platform-code-preview-box__copy svg {
  width: 16px;
  height: 16px;
}

.platform-code-preview-box__copy:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.platform-code-preview-box__code-shell {
  width: 100%;
  height: var(--platform-code-preview-height, 200px);
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

.platform-code-preview-box__code {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 10px;
  overflow: auto;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 18px;
  white-space: pre;
}

.platform-code-preview-box__line {
  display: block;
  min-height: 18px;
}

.platform-code-preview-box__line-number {
  display: inline-block;
  width: 22px;
  margin-right: 10px;
  color: #565656;
  text-align: right;
  user-select: none;
}

.platform-code-preview-box__token.is-keyword {
  color: #5dafff;
}

.platform-code-preview-box__token.is-string,
.platform-code-preview-box__token.is-number {
  color: #f0a36d;
}

.platform-code-preview-box__token.is-identifier {
  color: #35e8bb;
}

.platform-code-preview-box__token.is-property {
  color: #f185d2;
}

.platform-code-preview-box__token.is-comment {
  color: rgba(255, 255, 255, 0.42);
}

.platform-code-preview-box__code-shell .monaco-editor,
.platform-code-preview-box__code-shell .monaco-editor-background,
.platform-code-preview-box__code-shell .monaco-scrollable-element,
.platform-code-preview-box__code-shell .margin,
.platform-code-preview-box__code-shell .overflow-guard {
  background: transparent !important;
}

.platform-code-preview-box__editor-state {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.platform-code-preview-box__editor-error {
  max-width: 320px;
  padding: 16px;
  text-align: center;
}

.platform-code-preview-box__loader {
  display: grid;
  grid-template-columns: repeat(3, 2px);
  gap: 3px;
}

.platform-code-preview-box__loader-dot {
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: opacity 200ms ease-out;
}

@media (max-width: 920px) {
  .platform-code-preview-box__inner {
    grid-template-columns: 1fr;
  }

  .platform-code-preview-box__languages {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-code-preview-box__copy,
  .platform-code-preview-box__loader-dot {
    transition-duration: 1ms;
  }
}


.platform-page-hero {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.platform-page-hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-page-hero__title {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-page-hero__description {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-page-hero__actions {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.platform-page-hero__action {
  min-width: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  appearance: none;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: color 140ms ease;
}

.platform-page-hero__action:hover,
.platform-page-hero__action:focus-visible {
  color: #fff;
}

.platform-page-hero__action:focus-visible {
  outline: 1px solid rgba(77, 163, 255, 0.78);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .platform-page-hero {
    flex-direction: column;
    gap: 18px;
  }
}


.platform-ui-card {
  box-sizing: border-box;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  color: inherit;
  background: rgba(255, 255, 255, 0.075);
}

.platform-ui-card.is-feature {
  padding: 28px 30px 24px;
  display: flex;
  flex-direction: column;
}

.platform-ui-card.is-sidebar {
  padding: 16px;
}

.platform-ui-card__sidebar-header {
  min-width: 0;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.platform-ui-card__sidebar-title {
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-ui-card__sidebar-actions {
  min-width: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.platform-ui-card__feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.platform-ui-card__feature-icon.is-blue {
  color: #4da3ff;
}

.platform-ui-card__feature-icon.is-cyan {
  color: #7effff;
}

.platform-ui-card__feature-icon.is-green {
  color: #85df7b;
}

.platform-ui-card__feature-icon.is-violet {
  color: #b899ff;
}

.platform-ui-card__feature-icon.is-white {
  color: #fff;
}

.platform-ui-card__feature-title {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-ui-card__feature-description {
  max-width: 390px;
  min-height: 42px;
  margin: 8px 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}

.platform-ui-card__feature-links {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
}

.platform-ui-card__feature-link {
  box-sizing: border-box;
  width: calc(100% + 24px);
  min-height: 36px;
  margin-left: -12px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  appearance: none;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 140ms ease,
    background-color 140ms ease;
}

.platform-ui-card__feature-link:not(.is-static):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.platform-ui-card__feature-link.is-static {
  cursor: default;
}

.platform-ui-card__feature-link:focus-visible {
  outline: 1px solid rgba(77, 163, 255, 0.78);
  outline-offset: 3px;
}

.platform-ui-card__feature-link-label {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-ui-card__feature-link-end {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4da3ff;
}

.platform-ui-card__feature-link-meta {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 400;
}

.platform-ui-card__feature-link-end > svg {
  color: #fff;
}

@media (max-width: 700px) {
  .platform-ui-card.is-feature {
    padding: 24px;
  }
}


.platform-version-label {
  box-sizing: border-box;
  min-width: 0;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px 7px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 120ms ease,
    color 120ms ease,
    opacity 120ms ease;
}

.platform-version-label:hover:not(:disabled),
.platform-version-label:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.platform-version-label:focus-visible {
  box-shadow: 0 0 0 2px #000, 0 0 0 3px rgba(77, 163, 255, 0.72);
}

.platform-version-label:disabled {
  cursor: default;
  opacity: 0.45;
}

.platform-version-label__version,
.platform-version-label__qualifier {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-version-label__separator {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
}

@media (prefers-reduced-motion: reduce) {
  .platform-version-label {
    transition-duration: 1ms;
  }
}


.platform-home-page {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  color: #fff;
  background: #000;
}

.platform-home-page__inner {
  box-sizing: border-box;
  width: min(100%, var(--platform-page-content-max-width, 87.5rem));
  max-width: var(--platform-page-content-max-width, 87.5rem);
  min-height: 100%;
  margin: 0 auto;
  padding: 42px 72px 72px;
}

.platform-home-page__section-action {
  min-width: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  appearance: none;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  font: inherit;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: color 140ms ease;
}

.platform-home-page__section-action:hover,
.platform-home-page__section-action:focus-visible {
  color: #fff;
}

.platform-home-page__section-action:focus-visible,
.platform-home-page__section-item:focus-visible {
  outline: 1px solid rgba(77, 163, 255, 0.78);
  outline-offset: 3px;
}

.platform-home-page__features {
  width: min(100%, 960px);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.platform-home-page__sections {
  width: min(100%, 1180px);
  margin: 76px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.platform-home-page__section {
  min-width: 0;
}

.platform-home-page__section-header {
  min-height: 28px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.platform-home-page__section-title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: 0;
}

.platform-home-page__section-action {
  color: #4da3ff;
}

.platform-home-page__section-list {
  display: flex;
  flex-direction: column;
}

.platform-home-page__section-item {
  box-sizing: border-box;
  width: calc(100% + 24px);
  min-height: 78px;
  margin-left: -12px;
  padding: 13px 12px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  appearance: none;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 140ms ease;
}

.platform-home-page__section-item-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.58);
}

.platform-home-page__section-item-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.platform-home-page__section-item-copy strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
}

.platform-home-page__section-item-copy > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

.platform-home-page__section-item:hover strong {
  color: #fff;
}

.platform-home-page__section-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.platform-home-page__section-item-meta {
  padding-top: 1px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  line-height: 1.35;
  font-weight: 400;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .platform-home-page__inner {
    padding: 32px 32px 56px;
  }

  .platform-home-page__features {
    margin-top: 48px;
  }

  .platform-home-page__sections {
    margin-top: 56px;
    gap: 40px;
  }
}

@media (max-width: 700px) {
  .platform-home-page__inner {
    padding: 24px 16px 48px;
  }

  .platform-home-page__features,
  .platform-home-page__sections {
    grid-template-columns: 1fr;
  }

  .platform-home-page__features {
    margin-top: 36px;
    gap: 14px;
  }

  .platform-home-page__sections {
    margin-top: 48px;
    gap: 40px;
  }
}


.resource-overview-page {
  box-sizing: border-box;
  width: min(100%, var(--platform-page-content-max-width, 87.5rem));
  max-width: var(--platform-page-content-max-width, 87.5rem);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 42px 42px 10px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
  overscroll-behavior: contain;
  color: #fff;
}

.resource-overview-page.is-tags-and-plugins,
.resource-overview-page.is-skills,
.resource-overview-page.is-evaluations,
.resource-overview-page.is-tests,
.resource-overview-page.is-teams,
.resource-overview-page.is-metronomes,
.resource-overview-page.is-assurance,
.resource-overview-page.is-guardrails,
.resource-overview-page.is-fine-tuning {
  width: 100%;
  max-width: none;
  padding: 24px;
}

.resource-overview-page.is-organizations,
.resource-overview-page.is-marketplace,
.resource-overview-page.is-inference {
  gap: 76px;
}

.resource-overview-page__controls,
.resource-overview-page__header-actions {
  display: flex;
  align-items: center;
}

.resource-overview-page__controls {
  gap: 8px;
}
.resource-overview-page__header-actions {
  gap: 6px;
}

.resource-overview-page__menu-button {
  appearance: none;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.resource-overview-page__menu-button {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.resource-overview-page__menu-button:hover,
.resource-overview-page__menu-button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
}

.resource-overview-page__table-section {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.resource-overview-page__table-section.has-full-bleed-table {
  overflow: visible;
}

.resource-overview-page.is-inference {
  height: auto;
  min-height: 100%;
  overflow: visible;
}

.resource-overview-page.is-inference .resource-overview-page__table-section {
  flex: 0 0 auto;
  overflow: visible;
}

.resource-overview-table.is-agents .agents-overview-tab-bar {
  width: auto;
  max-width: 100%;
}

.resource-overview-segmented {
  height: 28px;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: #000;
}

.resource-overview-segmented button {
  height: 22px;
  padding: 0 10px;
  appearance: none;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 400;
  cursor: pointer;
}

.resource-overview-segmented button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.resource-overview-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.resource-overview-identity__visual {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}
.resource-overview-identity__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.resource-overview-identity__visual.is-agent,
.resource-overview-identity__visual.is-creator,
.resource-overview-identity__visual.is-team {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.075);
}
.resource-overview-identity__visual.is-size-compact {
  width: 16px;
  height: 16px;
}
.resource-overview-identity__visual.is-model img {
  object-fit: contain;
}
.resource-overview-identity__visual.is-skill,
.resource-overview-identity__visual.is-connection {
  background: transparent;
}
.resource-overview-identity__visual.is-skill > svg,
.resource-overview-identity__visual.is-connection > svg {
  width: 17px;
  height: 17px;
  color: #fff;
}
.resource-overview-identity__visual.is-size-compact.is-connection > svg {
  width: 16px;
  height: 16px;
}
.resource-overview-identity__visual.is-connection img {
  object-fit: contain;
}
.resource-overview-identity__title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-weight: 400;
}

.resource-overview-identity.is-catalog {
  gap: 12px;
}

.resource-overview-identity__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resource-overview-identity__description {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.resource-overview-table.is-catalog-ui .resource-overview-identity__visual,
.resource-overview-table.is-catalog-ui
  .resource-overview-identity__visual.is-size-compact,
.connection-identity-icon.is-catalog,
.connection-identity-icon.is-catalog.is-size-compact {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.resource-overview-table.is-catalog-ui
  .resource-overview-identity__visual.is-connection
  > svg,
.connection-identity-icon.is-catalog > svg {
  width: 20px;
  height: 20px;
}

.resource-overview-table.is-skills.is-catalog-ui
  .resource-overview-identity__visual.is-skill {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
}

.resource-overview-table.is-skills.is-catalog-ui
  .resource-overview-identity__visual.is-skill.is-computer-agents {
  padding: 0;
  background: #fff;
}

.resource-overview-table.is-skills.is-catalog-ui
  .resource-overview-identity__visual.is-creator {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.resource-overview-table.is-teams.is-catalog-ui
  .resource-overview-identity__visual.is-team {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: 0;
  box-shadow: none;
  background: transparent;
}

.resource-overview-table.is-teams.is-catalog-ui
  .resource-overview-identity__visual.is-team img {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  outline: 0;
  box-shadow: none;
}

.resource-overview-table.is-teams.is-catalog-ui
  .resource-overview-identity__visual.is-creator {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.resource-overview-table.is-teams.is-catalog-ui
  .resource-overview-identity__visual.is-creator img {
  border: 0;
  border-radius: 50%;
}

.resource-overview-table.is-metronomes.is-catalog-ui
  .resource-overview-identity__visual.is-creator {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.resource-overview-table.is-evaluations.is-catalog-ui
  .resource-overview-identity__visual.is-agent,
.resource-overview-table.is-evaluations.is-catalog-ui
  .resource-overview-identity__visual.is-creator,
.resource-overview-table.is-guardrails.is-catalog-ui
  .resource-overview-identity__visual.is-creator,
.resource-overview-table.is-fine-tuning.is-catalog-ui
  .resource-overview-identity__visual.is-agent,
.resource-overview-table.is-fine-tuning.is-catalog-ui
  .resource-overview-identity__visual.is-creator {
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-plugin,
.connection-identity-icon.is-catalog.is-plugin {
  border: 0;
  background: #fff;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-plugin.is-box,
.connection-identity-icon.is-catalog.is-plugin.is-box {
  background: #015fcf;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-plugin.is-gitlab,
.connection-identity-icon.is-catalog.is-plugin.is-gitlab {
  background: #f7f5e3;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-plugin.is-linear,
.connection-identity-icon.is-catalog.is-plugin.is-linear {
  background: linear-gradient(to bottom, #2c2d31, #131416);
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-plugin.is-stripe,
.connection-identity-icon.is-catalog.is-plugin.is-stripe {
  padding: 9px;
  background: #533afd;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-plugin.is-supabase,
.connection-identity-icon.is-catalog.is-plugin.is-supabase {
  background: #1b1b1b;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-tag,
.connection-identity-icon.is-catalog.is-tag {
  border: 0;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-tag.is-discord,
.connection-identity-icon.is-catalog.is-tag.is-discord {
  background: #5765ed;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-tag.is-email,
.connection-identity-icon.is-catalog.is-tag.is-email {
  background: linear-gradient(to top, #307ef7, #55b7ec);
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-tag.is-telegram,
.connection-identity-icon.is-catalog.is-tag.is-telegram {
  background: #26a2e1;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-tag.is-telegram
  > :is(img, svg),
.connection-identity-icon.is-catalog.is-tag.is-telegram > :is(img, svg) {
  width: 20px;
  height: 20px;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-plugin
  > svg,
.connection-identity-icon.is-catalog.is-plugin > svg {
  color: #111;
}

.resource-overview-table.is-connections.is-catalog-ui
  .resource-overview-identity__visual.is-plugin
  .playground-plugin-row-logo.is-github,
.connection-identity-icon.is-catalog.is-plugin
  .playground-plugin-row-logo.is-github {
  filter: none;
}

.resource-overview-table.is-connections.is-catalog-ui
  .platform-data-table__row-group.is-grouped-row
  > .platform-data-table__row {
  padding-left: var(--platform-data-table-catalog-inline-padding);
}

.resource-overview-table.is-connections.is-catalog-ui
  .platform-data-table__row-group.is-grouped-row
  > .platform-data-table__row
  > .platform-data-table__cell[data-column-id="name"] {
  box-sizing: border-box;
  padding-left: calc(
    var(--platform-data-table-row-group-chevron-size) +
      var(--platform-data-table-row-group-gap)
  );
}

.resource-overview-table.is-catalog-ui .resource-overview-identity__title {
  font-size: 12px;
  font-weight: 400;
}

.resource-overview-value {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 400;
}
.resource-overview-status {
  color: rgba(255, 255, 255, 0.48);
  font-weight: 400;
}
.resource-overview-status.is-active {
  color: #fff;
}

.resource-overview-guide,
.tags-overview-guide,
.skills-overview-guide,
.teams-overview-guide,
.organizations-overview-guide,
.guardrails-overview-guide,
.evaluations-overview-guide,
.fine-tuning-overview-guide {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.resource-overview-guide__cards,
.teams-overview-guide__cards,
.organizations-overview-guide__cards,
.guardrails-overview-guide__cards,
.evaluations-overview-guide__cards,
.fine-tuning-overview-guide__cards {
  width: min(100%, 960px);
  min-width: 0;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 900px) {
  .resource-overview-page.is-organizations,
  .resource-overview-page.is-marketplace,
  .resource-overview-page.is-inference {
    gap: 56px;
  }

  .resource-overview-guide__cards,
  .teams-overview-guide__cards,
  .organizations-overview-guide__cards,
  .guardrails-overview-guide__cards,
  .evaluations-overview-guide__cards,
  .fine-tuning-overview-guide__cards {
    margin-top: 48px;
  }
}

@media (max-width: 760px) {
  .resource-overview-page {
    padding: 18px 12px 10px;
    gap: 14px;
  }
}

@media (max-width: 700px) {
  .resource-overview-page.is-organizations,
  .resource-overview-page.is-marketplace,
  .resource-overview-page.is-inference {
    gap: 48px;
  }

  .resource-overview-guide__cards,
  .teams-overview-guide__cards,
  .organizations-overview-guide__cards,
  .guardrails-overview-guide__cards,
  .evaluations-overview-guide__cards,
  .fine-tuning-overview-guide__cards {
    margin-top: 36px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


.platform-detail-tab-bar {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.platform-detail-tab-bar__list {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
}

.platform-detail-tab-bar__list::-webkit-scrollbar { display: none; }

.platform-detail-tab-bar__tab {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  appearance: none;
  border: 0;
  border-bottom: 1px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

.platform-detail-tab-bar__tab:hover:not(:disabled) { color: rgba(255, 255, 255, 0.82); }
.platform-detail-tab-bar__tab.is-active { color: rgba(255, 255, 255, 0.96); border-bottom-color: rgba(255, 255, 255, 0.5); }
.platform-detail-tab-bar.is-minimal { border-bottom: 0; }
.platform-detail-tab-bar.is-minimal .platform-detail-tab-bar__tab {
  padding-bottom: 0;
  border-bottom: 0;
}
.platform-detail-tab-bar.is-minimal .platform-detail-tab-bar__tab.is-active { color: #fff; }
.platform-detail-tab-bar__tab:disabled { opacity: 0.36; cursor: default; }
.platform-detail-tab-bar__tab:focus-visible { outline: 1px solid rgba(77, 163, 255, 0.78); outline-offset: 3px; border-radius: 2px; }
.platform-detail-tab-bar__icon { width: 13px; height: 13px; flex: 0 0 auto; }
.platform-detail-tab-bar__label { min-width: 0; }
.platform-detail-tab-bar__end-actions {
  min-width: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

@media (max-width: 760px) {
  .platform-detail-tab-bar__list { gap: 18px; }
}


.platform-detail-sidebar {
  box-sizing: border-box;
  min-width: 0;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 180ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}

.platform-detail-sidebar[data-collapsed="true"] {
  opacity: 0;
  transform: translateX(18px);
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0s, 180ms;
}

.platform-detail-sidebar__section {
  box-sizing: border-box;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.platform-detail-sidebar__section-header {
  min-width: 0;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.platform-detail-sidebar__section-title {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
}

.platform-detail-sidebar__section-actions { display: inline-flex; align-items: center; gap: 6px; }
.platform-detail-sidebar__section-body { min-width: 0; }

@media (max-width: 1180px) {
  .platform-detail-sidebar { position: static; }
}


.platform-floating-sidebar-portal {
  position: absolute;
  inset: 0;
  z-index: 120;
  overflow: visible;
  pointer-events: none;
}

.platform-floating-sidebar {
  --platform-floating-sidebar-animation-duration: 240ms;
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 120;
  box-sizing: border-box;
  width: min(520px, 42vw);
  max-width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.075);
  background: #000;
  color: #fff;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    transform var(--platform-floating-sidebar-animation-duration) cubic-bezier(0.16, 1, 0.3, 1),
    opacity min(var(--platform-floating-sidebar-animation-duration), 180ms) ease;
}

.platform-floating-sidebar.is-fixed {
  position: fixed;
}

.platform-floating-sidebar[data-state="open"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.platform-floating-sidebar__header {
  box-sizing: border-box;
  min-height: 56px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: transparent;
}

.platform-floating-sidebar__title {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-floating-sidebar__header-actions {
  min-width: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.platform-floating-sidebar__body {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  flex: 1 1 auto;
  padding-right: 12px;
  padding-left: 16px;
  overflow: auto;
  overscroll-behavior: contain;
}

.platform-floating-sidebar__footer {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 760px) {
  .platform-floating-sidebar {
    width: min(100%, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-floating-sidebar {
    transition-duration: 1ms;
  }
}


.platform-floating-sidebar.platform-version-history-sidebar {
  border-left: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-version-history-sidebar .platform-floating-sidebar__header {
  padding-right: 20px;
  padding-left: 20px;
}

.platform-version-history-sidebar__body {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 16px;
}

.platform-version-history-sidebar__create-button > svg,
.platform-version-history-sidebar__footer-actions .platform-button > svg {
  width: 13px;
  height: 13px;
}

.platform-version-history-sidebar__state {
  margin: 10px 0 0;
  padding: 9px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.45;
}

.platform-version-history-sidebar__state.is-error {
  background: rgba(248, 113, 113, 0.1);
  color: rgba(255, 205, 205, 0.92);
}

.platform-version-history-sidebar__toolbar {
  flex: 0 0 auto;
  margin-top: 24px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-version-history-sidebar__toolbar .platform-data-table__toolbar-title {
  font-size: 18px;
}

.platform-version-history-sidebar__filter-popup {
  flex: 0 0 auto;
}

.platform-version-history-sidebar__list {
  min-width: 0;
  width: 100%;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
}

.platform-version-history-sidebar__row {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: transparent;
  transition: background-color 120ms ease;
}

.platform-version-history-sidebar__row:hover {
  background: rgba(255, 255, 255, 0.0375);
}

.platform-version-history-sidebar__row.is-selected,
.platform-version-history-sidebar__row.is-selected:hover {
  background: rgba(255, 255, 255, 0.1);
}

.platform-version-history-sidebar__row-main {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.platform-version-history-sidebar__row-title {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-version-history-sidebar__created-at {
  display: block;
  width: 100%;
  min-width: 0;
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-version-history-sidebar__row-main[aria-disabled="true"] {
  cursor: default;
}

.platform-version-history-sidebar__row-actions {
  min-width: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.platform-version-history-sidebar__status-label {
  flex: 0 0 auto;
}

.platform-version-history-sidebar__action-popup {
  flex: 0 0 auto;
}

.platform-version-history-sidebar__popup {
  --platform-popup-font-size: 12px;
}

.platform-version-history-sidebar__menu-item {
  min-height: 34px;
  padding: 8px 10px;
}

.platform-version-history-sidebar__menu-item.is-danger {
  color: #ff8f8f;
}

.platform-version-history-sidebar__menu-icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.platform-version-history-sidebar__menu-icon > svg {
  width: 13px;
  height: 13px;
}

.platform-version-history-sidebar__loading,
.platform-version-history-sidebar__empty {
  min-height: 180px;
  flex: 1 1 auto;
}

.platform-version-history-sidebar__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.platform-version-history-sidebar__empty h3,
.platform-version-history-sidebar__empty p {
  margin: 0;
  letter-spacing: 0;
}

.platform-version-history-sidebar__empty h3 {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.platform-version-history-sidebar__empty p {
  max-width: 280px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.45;
}

.platform-version-history-sidebar__footer {
  padding: 10px 20px 20px;
  border-top: 0;
  background: transparent;
}

.platform-version-history-sidebar__footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-version-history-sidebar__footer-actions > * {
  min-width: 0;
}

.platform-version-history-sidebar__footer-actions .platform-button.is-secondary {
  height: 32px !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.platform-version-history-sidebar__footer-actions .platform-button.is-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14) !important;
}

.platform-version-history-sidebar__view-changes-button {
  --platform-button-height: 32px;
  height: 32px !important;
  min-height: 32px !important;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

@media (prefers-reduced-motion: reduce) {
  .platform-version-history-sidebar__row {
    transition-duration: 1ms;
  }
}


.platform-version-save-dialog {
  display: flex;
  flex-direction: column;
}

.platform-version-save-dialog__body {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 20px;
  overflow: auto;
}

.platform-version-save-dialog__footer {
  justify-content: space-between;
}

.platform-version-save-dialog__description-field {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

.platform-version-save-dialog__mode-switch {
  min-width: 0;
}

.platform-version-save-dialog__mode-switch .platform-switch__option {
  flex: 0 0 auto;
}

.platform-version-save-dialog__changes {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.075);
}

.platform-version-save-dialog__changes-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 6px 10px 6px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.platform-version-save-dialog__comparison {
  display: inline-flex;
  width: auto;
  min-width: 0;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  white-space: nowrap;
}

.platform-version-save-dialog__comparison span:last-child {
  color: #fff;
}

.platform-version-save-dialog__file-selector {
  max-width: min(280px, 50%);
  margin-left: auto;
}

.platform-version-save-dialog__file-selector .platform-button-selector__group,
.platform-version-save-dialog__file-selector .platform-button-selector__action {
  min-width: 0;
  max-width: 100%;
}

.platform-version-save-dialog__file-selector-popup {
  overflow-x: hidden;
}

.platform-version-save-dialog__file-option {
  width: 100%;
  grid-template-columns: 14px minmax(0, 1fr);
}

.platform-version-save-dialog__file-option.is-selected {
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.platform-version-save-dialog__file-option-check {
  display: inline-flex;
  width: 14px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
}

.platform-version-save-dialog__file-option-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-version-save-dialog__change-content {
  min-height: 164px;
  max-height: 330px;
  overflow: auto;
}

.platform-version-save-dialog__change-content .platform-diff-viewer,
.platform-version-save-dialog__change-content .platform-diff-viewer.is-embedded {
  border: 0;
  border-radius: 0;
}

.platform-version-save-dialog__empty-changes {
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-align: center;
}

.platform-version-save-dialog__description-editor.platform-instructions-editor {
  min-width: 0;
  margin: 0;
}

.platform-version-save-dialog__description-editor.platform-instructions-editor.is-minimalistic-ui
  .platform-instructions-editor__header {
  padding: 0 0 8px;
}

.platform-version-save-dialog__description-editor.platform-instructions-editor.is-minimalistic-ui
  .platform-instructions-editor__body {
  width: 100%;
  min-height: 68px;
  padding: 10px 12px 24px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.platform-version-save-dialog__description-editor.platform-instructions-editor.is-minimalistic-ui
  .platform-instructions-editor__preview,
.platform-version-save-dialog__description-editor.platform-instructions-editor.is-minimalistic-ui
  .platform-instructions-editor__prosemirror {
  min-height: 32px;
  padding: 0;
}

.platform-version-save-dialog__description-editor.platform-instructions-editor.is-minimalistic-ui
  .platform-instructions-editor__body:focus-within {
  box-shadow: 0 0 0 1px rgba(77, 163, 255, 0.8);
}

.platform-version-save-dialog__character-count {
  position: absolute;
  right: 10px;
  bottom: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  pointer-events: none;
}

.platform-version-save-dialog__error {
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(239, 68, 68, 0.1);
  color: rgba(248, 113, 113, 0.98);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .platform-version-save-dialog__body {
    gap: 16px;
  }

  .platform-version-save-dialog__mode-switch {
    height: auto;
    min-height: 28px;
  }

  .platform-version-save-dialog__mode-switch .platform-switch__option {
    padding-inline: 8px;
  }

  .platform-version-save-dialog__changes-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .platform-version-save-dialog__file-selector {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .platform-version-save-dialog__change-content {
    max-height: 280px;
  }
}

/* Shared version-comparison page. This lives in the versioning bundle so every
   versioned resource gets the same prompt-style header and compare toolbar. */
.platform-version-changes-page.playground-version-changes-page {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.platform-version-changes-page__header,
.platform-version-changes-page__identity,
.platform-version-changes-page__identity-copy {
  min-width: 0;
}

.platform-version-changes-page__header {
  flex: 0 0 auto;
}

.platform-version-changes-page__identity {
  box-sizing: border-box;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-version-changes-page__identity-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.platform-version-changes-page__title-button {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.platform-version-changes-page__title-button:hover,
.platform-version-changes-page__title-button:focus-visible {
  color: #fff;
}

.platform-version-changes-page__title-button:focus-visible {
  outline: none;
}

.platform-version-changes-page__back-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: rgba(255, 255, 255, 0.62);
  transition: color 160ms ease;
}

.platform-version-changes-page__title-button:hover
  .platform-version-changes-page__back-icon,
.platform-version-changes-page__title-button:focus-visible
  .platform-version-changes-page__back-icon {
  color: #fff;
}

.platform-version-changes-page__title {
  min-width: 0;
  margin: 0;
  color: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.platform-version-changes-page__subtitle {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.platform-version-changes-page__compare-toolbar {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-version-changes-page__compare-leading,
.platform-version-changes-page__compare-end,
.platform-version-changes-page__selectors,
.platform-version-changes-page__summary,
.platform-version-changes-page__static-labels,
.platform-version-changes-page__actions {
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.platform-version-changes-page__compare-leading {
  flex: 1 1 auto;
  gap: 10px;
}

.platform-version-changes-page__compare-title {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-version-changes-page__summary {
  flex: 0 0 auto;
  gap: 7px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}

.platform-version-changes-page__summary .is-additions {
  color: #3fb950;
}

.platform-version-changes-page__summary .is-deletions {
  color: #f85149;
}

.platform-version-changes-page__compare-end {
  flex: 0 1 auto;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.platform-version-changes-page__selectors {
  flex: 0 1 auto;
  justify-content: flex-end;
  gap: 8px;
}

.platform-version-changes-page__selector {
  width: min(220px, 24vw);
  max-width: 220px;
}

.platform-version-changes-page__selector-trigger.platform-selector__trigger {
  width: 100%;
  min-height: 32px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.68);
  text-align: right;
}

.platform-version-changes-page__selector-trigger .platform-selector__value {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-version-changes-page__compare-arrow {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  line-height: 1;
}

.platform-version-changes-page__legacy-controls {
  min-width: 0;
  display: flex;
  align-items: center;
}

.platform-version-changes-page__legacy-controls
  .playground-version-changes-compare-selectors {
  align-items: center;
  flex-wrap: nowrap;
}

.platform-version-changes-page__static-labels {
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.platform-version-changes-page__actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  gap: 8px;
}

.platform-version-changes-page__file-list {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.platform-version-changes-page__file-card {
  min-width: 0;
}

.platform-version-changes-page__empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 720px) {
  .platform-version-changes-page__compare-toolbar {
    min-height: 42px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .platform-version-changes-page__compare-end,
  .platform-version-changes-page__selectors {
    width: 100%;
    justify-content: flex-start;
    margin-left: 0;
  }

  .platform-version-changes-page__selector {
    width: min(200px, calc(50vw - 40px));
  }
}


.platform-instructions-editor {
  box-sizing: border-box;
  min-width: 0;
  margin: 0 0 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
  overflow: visible;
}

.platform-instructions-editor__header {
  box-sizing: border-box;
  min-width: 0;
  padding: 12px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-radius: 15px 15px 0 0;
  background: #121212;
}

.platform-instructions-editor.is-sticky .platform-instructions-editor__header {
  position: sticky;
  top: 0;
  z-index: 8;
  height: 40px;
}

.platform-instructions-editor.is-sticky .platform-instructions-editor__header.is-stuck {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.platform-instructions-editor.is-static .platform-instructions-editor__header {
  position: static;
  padding-left: 23px;
  padding-right: 23px;
  background: transparent;
}

.platform-instructions-editor__title {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
}

.platform-instructions-editor__toolbar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.platform-instructions-editor__toolbar-button {
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  cursor: pointer;
  transition: color 150ms ease, background-color 150ms ease;
}

.platform-instructions-editor__toolbar-button:hover:not(:disabled) { color: rgba(255, 255, 255, 0.96); background: rgba(255, 255, 255, 0.08); }
.platform-instructions-editor__toolbar-button:focus-visible { outline: 1px solid rgba(77, 163, 255, 0.78); outline-offset: 2px; }
.platform-instructions-editor__toolbar-button.is-active { color: rgba(255, 255, 255, 0.96); background: rgba(255, 255, 255, 0.1); }
.platform-instructions-editor__toolbar-button:disabled { color: rgba(255, 255, 255, 0.28); opacity: 1; cursor: not-allowed; }
.platform-instructions-editor__toolbar-divider { width: 1px; height: 16px; margin: 0 2px; flex: 0 0 1px; background: rgba(255, 255, 255, 0.14); }
.platform-instructions-editor__toolbar-menu { display: inline-flex; flex: 0 0 auto; }
.platform-instructions-editor__toolbar-menu-trigger { width: auto; min-width: 42px; padding: 0 7px; gap: 3px; }
.platform-instructions-editor__toolbar-menu-trigger.is-style-trigger { min-width: 58px; gap: 5px; }
.platform-instructions-editor__toolbar-menu-trigger.is-text-selection-context-trigger { display: none; }
.platform-instructions-editor__toolbar-menu-label { font-size: 12px; line-height: 1; font-weight: 400; }
.platform-instructions-editor__toolbar-popup { padding: 4px 0; }
.platform-instructions-editor__toolbar-popup-option { min-height: 32px; }
.platform-instructions-editor__toolbar-popup-option .tb-popup-icon { width: 14px; height: 14px; flex: 0 0 14px; }
.platform-instructions-editor__toolbar-popup-option .tb-popup-check-slot { width: 14px; min-width: 14px; margin-left: auto; }
.platform-instructions-editor__toolbar-popup-divider {
  height: 1px;
  margin: 4px 8px;
  background: rgba(255, 255, 255, 0.1);
}
.platform-instructions-editor__slash-anchor { z-index: 1000; }
.platform-instructions-editor__slash-popup {
  padding: 4px 0;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.platform-instructions-editor__slash-popup::-webkit-scrollbar { display: none; }
.platform-instructions-editor__slash-option { min-height: 32px; }
.platform-instructions-editor__slash-option .tb-popup-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}
.platform-instructions-editor__slash-option.is-selected {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.platform-instructions-editor__slash-shortcut {
  margin-left: auto;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.platform-instructions-editor__slash-divider {
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: rgba(255, 255, 255, 0.1);
}
.platform-instructions-editor__slash-empty {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.4;
}
.platform-instructions-editor__file-input { display: none; }

.platform-instructions-editor__body {
  box-sizing: border-box;
  position: relative;
  width: calc(100% - 6px);
  min-height: 0;
  margin-left: 3px;
  padding: 20px 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: #000;
  overflow: visible;
}

.platform-instructions-editor__content-viewport {
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  overflow: visible;
}

.platform-instructions-editor.is-content-collapsed
  .platform-instructions-editor__content-viewport {
  max-height: calc(
    var(--platform-instructions-editor-collapsed-lines, 10) * 1.6em
  );
  overflow: hidden;
}

.platform-instructions-editor__collapse-actions {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
}

.platform-instructions-editor__collapse-button.platform-button {
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

.platform-instructions-editor__content,
.platform-instructions-editor__readonly {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.6;
}

.platform-instructions-editor__prosemirror {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-size: 12px;
  line-height: 1.6;
  outline: none;
  background: transparent;
  caret-color: rgba(255, 255, 255, 0.96);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.platform-instructions-editor__prosemirror p.is-editor-empty:first-child::before {
  height: 0;
  color: rgba(255, 255, 255, 0.38);
  content: attr(data-placeholder);
  float: left;
  pointer-events: none;
}

.platform-instructions-editor__preview.playground-tasks-detail-description-placeholder { color: rgba(255, 255, 255, 0.38); }
.platform-instructions-editor__upload-error { padding: 0 0 12px; color: #ff8585; font-size: 11px; line-height: 1.4; }
.platform-instructions-editor.is-file-dragging .platform-instructions-editor__body { background: rgba(77, 163, 255, 0.08); box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.42); }
.platform-instructions-editor.is-file-uploading .platform-instructions-editor__toolbar-menu-trigger.is-insert-trigger { animation: platform-instructions-editor-upload-pulse 900ms ease-in-out infinite alternate; }

@keyframes platform-instructions-editor-upload-pulse {
  from { opacity: 0.35; }
  to { opacity: 0.85; }
}

.platform-instructions-editor.is-minimalistic-ui,
.platform-instructions-editor.is-minimalistic-ui .platform-instructions-editor__header,
.platform-instructions-editor.is-minimalistic-ui .platform-instructions-editor__body {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.platform-instructions-editor.is-minimalistic-ui .platform-instructions-editor__body {
  width: 100%;
  margin-left: 0;
  border: none;
}

.platform-instructions-editor.is-minimalistic-ui .platform-instructions-editor__preview,
.platform-instructions-editor.is-minimalistic-ui .platform-instructions-editor__readonly {
  padding: 0;
}

.platform-instructions-editor.is-minimalistic-ui .platform-instructions-editor__prosemirror {
  padding: 12px 0 0;
}

.platform-markdown { color: rgba(255, 255, 255, 0.7); font-size: 12px; line-height: 1.6; overflow-wrap: anywhere; }
.platform-markdown > :first-child { margin-top: 0; }
.platform-markdown > :last-child { margin-bottom: 0; }
.platform-markdown__paragraph { margin: 0 0 10px; }
.platform-markdown__heading { margin: 16px 0 8px; color: rgba(255, 255, 255, 0.92); line-height: 1.35; font-weight: 500; }
.platform-markdown h1.platform-markdown__heading { font-size: 18px; }
.platform-markdown h2.platform-markdown__heading { font-size: 16px; }
.platform-markdown h3.platform-markdown__heading,
.platform-markdown h4.platform-markdown__heading { font-size: 14px; }
.platform-markdown__list { margin: 0 0 10px; padding-left: 20px; }
.platform-markdown__list-item + .platform-markdown__list-item { margin-top: 4px; }
.platform-markdown__inline-code { padding: 1px 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.platform-markdown__pre { margin: 0 0 10px; padding: 0; overflow: auto; border-radius: 0; background: transparent; }
.platform-markdown__pre .platform-markdown__code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.platform-markdown__link { color: #7eb9ff; text-decoration: none; }
.platform-markdown__link:hover { text-decoration: underline; text-underline-offset: 3px; }
.platform-markdown__quote { margin: 0 0 10px; padding-left: 12px; border-left: 2px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.58); }
.platform-markdown__paragraph-quote,
.platform-instructions-editor__paragraph-quote { margin: 0 0 10px; color: rgba(255, 255, 255, 0.7); font-style: italic; }
.platform-markdown__paragraph-quote::before,
.platform-instructions-editor__paragraph-quote::before { content: "\201C"; color: rgba(255, 255, 255, 0.46); }
.platform-markdown__paragraph-quote::after,
.platform-instructions-editor__paragraph-quote::after { content: "\201D"; color: rgba(255, 255, 255, 0.46); }
.platform-instructions-editor__table-node {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 8px 0 12px;
}
.platform-markdown__table-wrap,
.platform-instructions-editor__prosemirror .tableWrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 8px 0 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  scrollbar-width: thin;
}
.platform-instructions-editor__prosemirror
  .platform-instructions-editor__table-node
  > .tableWrapper {
  margin: 0;
}
.platform-instructions-editor__table-layout {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
.platform-instructions-editor__table-actions {
  position: absolute;
  z-index: 4;
  top: 6px;
  right: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
  transition:
    opacity 120ms ease,
    transform 120ms ease;
}
.platform-instructions-editor__table-node:hover
  .platform-instructions-editor__table-actions,
.platform-instructions-editor__table-node:focus-within
  .platform-instructions-editor__table-actions,
.platform-instructions-editor__table-node.is-focused
  .platform-instructions-editor__table-actions,
.platform-instructions-editor__table-node.is-menu-open
  .platform-instructions-editor__table-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.platform-instructions-editor__table-actions
  .platform-instructions-editor__toolbar-menu-trigger.is-table-context-trigger {
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  backdrop-filter: none;
}
.platform-instructions-editor__table-actions
  .platform-instructions-editor__toolbar-menu-trigger.is-table-context-trigger:hover,
.platform-instructions-editor__table-actions
  .platform-instructions-editor__toolbar-menu-trigger.is-table-context-trigger.is-active {
  color: #fff;
  background: transparent;
}
.platform-markdown__table,
.platform-instructions-editor__prosemirror
  .platform-instructions-editor__table-layout
  > table {
  width: 100%;
  min-width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  table-layout: fixed;
}
.platform-markdown__th,
.platform-markdown__td,
.platform-instructions-editor__prosemirror th,
.platform-instructions-editor__prosemirror td {
  position: relative;
  box-sizing: border-box;
  min-width: 100px;
  padding: 8px 10px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
.platform-markdown__th,
.platform-instructions-editor__prosemirror th {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.075);
  font-weight: 500;
}
.platform-markdown__row:last-child > .platform-markdown__td,
.platform-markdown__row:last-child > .platform-markdown__th,
.platform-instructions-editor__prosemirror tr:last-child > td,
.platform-instructions-editor__prosemirror tr:last-child > th {
  border-bottom: 0;
}
.platform-markdown__row > :last-child,
.platform-instructions-editor__prosemirror tr > :last-child {
  border-right: 0;
}
.platform-instructions-editor__prosemirror th > p,
.platform-instructions-editor__prosemirror td > p {
  min-height: 1.6em;
  margin: 0;
}
.platform-instructions-editor__prosemirror .selectedCell::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(77, 163, 255, 0.12);
}
.platform-markdown__rule { margin: 14px 0; border: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.platform-markdown__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 250px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}
.platform-markdown__image.is-size-small {
  width: auto;
  max-height: 120px;
}
.platform-markdown__image.is-size-medium {
  width: auto;
  max-height: 250px;
}
.platform-markdown__image.is-size-big { width: 100%; max-height: none; }
.platform-markdown__image.is-align-left {
  margin-right: auto;
  margin-left: 0;
}
.platform-markdown__image.is-align-center {
  margin-right: auto;
  margin-left: auto;
}
.platform-markdown__image.is-align-right {
  margin-right: 0;
  margin-left: auto;
}
.platform-markdown__underline { text-decoration-thickness: 1px; text-underline-offset: 2px; }

.platform-instructions-editor__prosemirror > :first-child { margin-top: 0; }
.platform-instructions-editor__prosemirror > :last-child { margin-bottom: 0; }
.platform-instructions-editor__prosemirror p { margin: 0 0 10px; }
.platform-instructions-editor__prosemirror h1,
.platform-instructions-editor__prosemirror h2,
.platform-instructions-editor__prosemirror h3,
.platform-instructions-editor__prosemirror h4 { margin: 16px 0 8px; color: #fff; line-height: 1.35; font-weight: 500; }
.platform-instructions-editor__prosemirror h1 { font-size: 18px; }
.platform-instructions-editor__prosemirror h2 { font-size: 16px; }
.platform-instructions-editor__prosemirror h3,
.platform-instructions-editor__prosemirror h4 { font-size: 14px; }
.platform-instructions-editor__prosemirror ul,
.platform-instructions-editor__prosemirror ol { margin: 0 0 10px; padding-left: 20px; }
.platform-instructions-editor__prosemirror li + li { margin-top: 4px; }
.platform-instructions-editor__prosemirror code { padding: 1px 4px; border-radius: 4px; background: rgba(255, 255, 255, 0.08); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.platform-instructions-editor__prosemirror pre { margin: 0 0 10px; padding: 0; overflow: auto; border-radius: 0; background: transparent; }
.platform-instructions-editor__prosemirror pre code { padding: 0; background: transparent; }
.platform-instructions-editor__prosemirror a { color: #7eb9ff; text-decoration: none; cursor: pointer; }
.platform-instructions-editor__prosemirror a:hover { text-decoration: underline; text-underline-offset: 3px; }
.platform-instructions-editor__prosemirror blockquote { margin: 0 0 10px; padding-left: 12px; border-left: 2px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.58); }
.platform-instructions-editor__prosemirror table { width: 100%; table-layout: fixed; }
.platform-instructions-editor__prosemirror hr { margin: 14px 0; border: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.platform-instructions-editor__prosemirror u { text-decoration-thickness: 1px; text-underline-offset: 2px; }
.platform-instructions-editor__prosemirror ul[data-type="taskList"] { padding-left: 0; list-style: none; }
.platform-instructions-editor__prosemirror ul[data-type="taskList"] li { display: flex; align-items: flex-start; gap: 8px; }
.platform-instructions-editor__prosemirror ul[data-type="taskList"] li > div { min-width: 0; flex: 1; }
.platform-instructions-editor__image-node-host {
  box-sizing: border-box;
  display: block;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  margin: 10px 0;
}
.platform-instructions-editor__image-node-host[data-platform-image-alignment="center"] {
  margin-right: auto;
  margin-left: auto;
}
.platform-instructions-editor__image-node-host[data-platform-image-alignment="right"] {
  margin-right: 0;
  margin-left: auto;
}
.platform-instructions-editor__image-node-host[data-platform-image-size="big"] {
  width: 100%;
}
.platform-instructions-editor__image-node {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  margin: 0;
}
.platform-instructions-editor__image-node.is-align-center {
  margin-right: auto;
  margin-left: auto;
}
.platform-instructions-editor__image-node.is-align-right {
  margin-right: 0;
  margin-left: auto;
}
.platform-instructions-editor__image-node.is-size-big { width: 100%; }
.platform-instructions-editor__image-node.is-selected,
.platform-instructions-editor__image-node:focus-within,
.platform-instructions-editor__image-node-host.ProseMirror-selectednode
  .platform-instructions-editor__image-node {
  outline: 1px solid rgba(77, 163, 255, 0.78);
  outline-offset: 2px;
  border-radius: 8px;
}
.platform-instructions-editor__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 250px;
  height: auto;
  margin: 0;
  object-fit: contain;
  border-radius: 8px;
}
.platform-instructions-editor__image.is-size-small { width: auto; max-height: 120px; }
.platform-instructions-editor__image.is-size-medium { width: auto; max-height: 250px; }
.platform-instructions-editor__image.is-size-big { width: 100%; max-height: none; }
.platform-instructions-editor__image-actions {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}
.platform-instructions-editor__image-node:hover .platform-instructions-editor__image-actions,
.platform-instructions-editor__image-node:focus-within .platform-instructions-editor__image-actions,
.platform-instructions-editor__image-node.is-menu-open .platform-instructions-editor__image-actions {
  opacity: 1;
  pointer-events: auto;
}
.platform-instructions-editor__image-actions .platform-icon-button {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.platform-instructions-editor__image-popup-anchor { display: flex; }
.platform-instructions-editor__image-popup { padding: 4px 0; }
.platform-instructions-editor__image-popup-header {
  box-sizing: border-box;
  min-width: 0;
  padding: 8px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.platform-instructions-editor__image-popup-name {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.platform-instructions-editor__image-popup-size {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 400;
}
.platform-instructions-editor__image-popup-group {
  padding: 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}
.platform-instructions-editor__image-popup .tb-popup-row { min-height: 32px; }
.platform-instructions-editor__image-popup .tb-popup-check-slot {
  width: 14px;
  min-width: 14px;
  margin-left: auto;
}
.platform-instructions-editor__image-rename-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.platform-instructions-editor__image-rename-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 400;
}
.platform-instructions-editor__image-rename-input {
  box-sizing: border-box;
  width: 100%;
  min-height: 32px;
  padding: 7px 10px;
  border: 0;
  border-radius: 8px;
  outline: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 12px;
}
.platform-instructions-editor__image-rename-input:focus {
  box-shadow: inset 0 0 0 1px rgba(77, 163, 255, 0.72);
}
.platform-instructions-editor__image-rename-error {
  margin: 0;
  color: #ff8f8f;
  font-size: 10px;
  line-height: 1.4;
}
.platform-instructions-editor__attachment-node {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 6px 0;
}
.platform-instructions-editor__attachment-node .platform-attachments__item {
  width: 100%;
}
.platform-instructions-editor__attachment-node.is-selected .platform-attachments__item,
.platform-instructions-editor__attachment-node.ProseMirror-selectednode .platform-attachments__item {
  outline: 1px solid rgba(77, 163, 255, 0.78);
  outline-offset: -1px;
}
.platform-instructions-editor__attachment-node.is-readonly .platform-attachments__item-main {
  cursor: default;
}

@media (max-width: 760px) {
  .platform-instructions-editor__header { padding-left: 12px; padding-right: 12px; }
  .platform-instructions-editor__toolbar { max-width: 72vw; overflow-x: auto; scrollbar-width: none; }
  .platform-instructions-editor__toolbar::-webkit-scrollbar { display: none; }
  .platform-instructions-editor__body { width: 100%; margin-left: 0; padding-left: 14px; padding-right: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .platform-instructions-editor__image-actions { transition-duration: 1ms; }
}


.platform-settings-section-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.platform-settings-section {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.platform-settings-section__header {
  box-sizing: border-box;
  min-width: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 6px;
  background: #000;
}

.platform-settings-section__heading,
.platform-settings-section__actions {
  min-width: 0;
  display: flex;
  align-items: center;
}

.platform-settings-section__heading {
  gap: 8px;
}

.platform-settings-section__heading-copy {
  min-width: 0;
}

.platform-settings-section__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  color: rgba(255, 255, 255, 0.7);
}

.platform-settings-section__icon svg {
  width: 14px;
  height: 14px;
}

.platform-settings-section__title {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.platform-settings-section__description {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.35;
}

.platform-settings-section__actions {
  justify-content: flex-end;
  gap: 6px;
  flex: 0 0 auto;
}

.platform-settings-section__body {
  box-sizing: border-box;
  min-width: 0;
  padding: 12px 6px;
  background: #000;
}

.platform-settings-section__body.is-flush {
  padding: 0;
}

.platform-settings-data-table {
  --platform-data-table-body-background: transparent;
  --platform-data-table-row-background: #000;
  --platform-data-table-surface: transparent;
  --platform-data-table-sticky-background: #000;
  gap: 0;
  width: 100%;
}

.platform-settings-data-table .platform-data-table__surface,
.platform-settings-data-table .platform-data-table__scroll {
  background: transparent;
  overflow: visible;
}

.platform-settings-data-table.platform-data-table.is-minimalistic-ui .platform-data-table__scroll {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  border-radius: 0;
}

.platform-settings-data-table .platform-data-table__header,
.platform-settings-data-table .platform-data-table__row {
  gap: 16px;
  padding-right: 6px;
  padding-left: 6px;
}

.platform-settings-data-table .platform-data-table__header-cell,
.platform-settings-data-table .platform-data-table__cell {
  overflow: visible;
  white-space: normal;
}

.platform-settings-data-table .platform-data-table__row {
  padding-top: 12px;
  padding-bottom: 12px;
}


.resource-detail-page {
  --resource-detail-section-gap: 42px;
  box-sizing: border-box;
  width: min(100%, var(--platform-page-content-max-width, 87.5rem));
  max-width: var(--platform-page-content-max-width, 87.5rem);
  min-width: 0;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  column-gap: 42px;
  row-gap: 24px;
  align-items: start;
  color: #fff;
  transition:
    grid-template-columns 260ms cubic-bezier(0.16, 1, 0.3, 1),
    column-gap 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.resource-detail-page.is-sidebar-empty { grid-template-columns: minmax(0, 1fr); }
.resource-detail-page.is-sidebar-collapsed { grid-template-columns: minmax(0, 1fr) minmax(0, 0); column-gap: 0; }

.resource-detail-page.is-sidebar-top-aligned:not(.has-tabs) {
  grid-template-areas:
    "header sidebar"
    "content sidebar";
}

.resource-detail-page.is-sidebar-top-aligned:not(.has-tabs) > .resource-detail-page__header {
  grid-area: header;
  grid-column: auto;
}

.resource-detail-page.is-sidebar-top-aligned:not(.has-tabs) > .resource-detail-page__content {
  grid-area: content;
}

.resource-detail-page.is-sidebar-top-aligned:not(.has-tabs) > .platform-detail-sidebar {
  grid-area: sidebar;
  grid-row: 1 / -1;
}

.resource-detail-page__header,
.resource-detail-page > .platform-detail-tab-bar {
  grid-column: 1 / -1;
}

.resource-detail-page > .platform-detail-tab-bar {
  border-bottom: 0;
}

.resource-detail-page__header {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.resource-detail-page__header-content { min-width: 0; flex: 1 1 auto; }
.resource-detail-page__header-actions { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 6px; }
.resource-detail-page__title { margin: 0; color: rgba(255, 255, 255, 0.96); font-size: 24px; line-height: 1.2; font-weight: 600; }

.platform-service-detail-identity {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-service-detail-identity__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.platform-service-detail-identity__copy {
  min-width: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.platform-service-detail-identity__title {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.platform-service-detail-identity__description {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
}

.platform-service-detail-identity__title-input,
.platform-service-detail-identity__description-input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-family: inherit;
}

.platform-service-detail-identity__title-input {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}

.platform-service-detail-identity__description-input {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.platform-service-detail-identity__title-input::placeholder,
.platform-service-detail-identity__description-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
  opacity: 1;
}

.resource-detail-page__tab-bar-actions {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.resource-detail-page__sidebar-toggle {
  min-width: 0;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.resource-detail-page__external-tab-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.resource-detail-page__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--resource-detail-section-gap);
}

.platform-service-detail-frame {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 42px 44px 56px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}

.platform-service-detail-frame::-webkit-scrollbar {
  display: none;
}

.platform-service-detail-page {
  --platform-page-content-max-width: 87.5rem;
}

.platform-service-detail-page__main {
  min-width: 0;
}

.platform-service-detail-page__sidebar-card.platform-ui-card {
  min-width: 0;
}

.playground-ticket-detail-sidebar-details {
  border: 0;
}

.platform-service-detail-page__property-list {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.platform-service-detail-page__property {
  min-width: 0;
  min-height: 30px;
  display: grid;
  grid-template-columns: minmax(88px, 110px) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 400;
}

.platform-service-detail-page__property-label {
  min-width: 0;
  color: #fff;
}

.platform-service-detail-page__property-value {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.platform-service-detail-page__property-value > .platform-label {
  max-width: 100%;
}

.platform-service-detail-page__sidebar-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-service-detail-page__sidebar-actions > .platform-button {
  width: 100%;
}

.platform-resource-detail-sidebar {
  min-width: 0;
}

.platform-resource-detail-sidebar__properties {
  min-width: 0;
}

.platform-resource-detail-sidebar__identity {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

.platform-resource-detail-sidebar__avatar {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 500;
}

.platform-resource-detail-sidebar__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-resource-detail-sidebar__identity-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-resource-detail-sidebar__creator-row .platform-service-detail-page__property-value,
.platform-resource-detail-sidebar__owner-row .platform-service-detail-page__property-value {
  min-width: 0;
  overflow: visible;
}

.platform-resource-detail-sidebar__owner-row {
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-resource-detail-sidebar__owner-selector,
.platform-resource-detail-sidebar__owner-selector .platform-selector__trigger {
  min-width: 0;
  width: 100%;
}

.platform-resource-detail-sidebar__owner-selector .platform-selector__trigger {
  justify-content: flex-end;
  text-align: right;
}

.platform-resource-detail-sidebar__additional {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.platform-resource-detail-sidebar__additional summary {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.35;
  user-select: none;
}

.platform-resource-detail-sidebar__additional-properties {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.file-resource-detail-page {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  align-self: stretch;
  margin: 0;
}

.file-resource-detail-page.is-code-tab {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}

.file-resource-detail-page__content.is-code-tab {
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  align-self: stretch;
  gap: 0;
  overflow: hidden;
}

.file-resource-detail-page__code {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.file-resource-detail-page__metadata:empty,
.file-resource-detail-page__notice:empty {
  display: none;
}

.file-resource-detail-page__notice {
  min-width: 0;
}

.file-resource-detail-page__metadata,
.file-resource-detail-page__notice {
  flex: 0 0 auto;
}

.file-resource-detail-page__description-input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  letter-spacing: 0;
}

.file-resource-detail-page__workspace {
  min-width: 0;
  min-height: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.file-resource-detail-page__workspace > .platform-code-editor-workspace {
  width: 100%;
  min-height: 0;
  flex: 1 1 0;
  align-self: stretch;
}

.file-resource-detail-page.is-code-tab > .platform-detail-sidebar {
  display: none;
}

.file-resource-detail-page__content.is-settings-tab {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
}

.file-resource-detail-page.is-settings-tab {
  box-sizing: border-box;
  padding: 42px 44px 56px;
  overflow-x: hidden;
  overflow-y: auto;
}

.file-resource-detail-page__settings {
  min-width: 0;
}

@media (max-width: 1180px) {
  .resource-detail-page,
  .resource-detail-page.is-sidebar-collapsed { grid-template-columns: minmax(0, 1fr); column-gap: 0; }
  .resource-detail-page > .platform-detail-sidebar { grid-column: 1; }

  .resource-detail-page.is-sidebar-top-aligned:not(.has-tabs) {
    grid-template-areas:
      "header"
      "content"
      "sidebar";
  }

  .resource-detail-page.is-sidebar-top-aligned:not(.has-tabs) > .platform-detail-sidebar {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .resource-detail-page { row-gap: 16px; }
  .resource-detail-page__header { align-items: flex-start; flex-direction: column; }
  .resource-detail-page__header-actions { width: 100%; justify-content: flex-start; }
  .resource-detail-page__title { font-size: 20px; }
  .file-resource-detail-page.is-settings-tab { padding: 24px 20px 40px; }
  .platform-service-detail-frame { padding: 16px; }
}


.playground-source-server-detail-main .playground-server-detail-page {
  width: min(100%, var(--playground-centered-page-max-width));
  max-width: var(--playground-centered-page-max-width);
  margin: 0 auto;
}

.playground-source-server-detail-main .playground-server-detail-content,
.playground-source-server-detail-main .playground-server-settings-tab {
  display: flex;
  flex-direction: column;
  gap: var(--resource-detail-section-gap);
}

.playground-source-server-detail-main .playground-source-server-usage-activity-table {
  width: 100%;
  min-width: 0;
}

.playground-resources-page.is-develop-server-kind-page
.playground-environments-editor-main.playground-tasks-detail-main.playground-source-server-detail-main.is-source-server-usage-tab,
.playground-source-server-detail-main
.playground-environments-detail-scroll.playground-environments-editor-scroll.is-source-server-usage-tab,
.playground-source-server-detail-main
.playground-server-detail-page.is-source-deployable-server-detail.is-source-server-usage-tab,
.playground-source-server-detail-main
.playground-server-detail-page__content.is-source-server-usage-tab,
.playground-source-server-detail-main
.playground-server-detail-content.is-source-server-usage-tab,
.playground-source-server-detail-main
.playground-source-server-usage-tab-content {
  min-height: 0;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

.playground-resources-page.is-develop-server-kind-page
.playground-environments-editor-main.playground-tasks-detail-main.playground-source-server-detail-main.is-source-server-usage-tab,
.playground-source-server-detail-main
.playground-environments-detail-scroll.playground-environments-editor-scroll.is-source-server-usage-tab,
.playground-source-server-detail-main
.playground-server-detail-content.is-source-server-usage-tab {
  flex: 1 1 0;
}

.playground-source-server-detail-main
.playground-server-detail-page.is-source-deployable-server-detail.is-source-server-usage-tab {
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
}

.playground-source-server-detail-main
.playground-source-server-usage-tab-content {
  display: flex;
  flex-direction: column;
  gap: var(--resource-detail-section-gap);
}

.playground-source-server-detail-main
.playground-source-server-usage-tab-content
> .playground-server-detail-analytics {
  flex: 0 0 auto;
}

.playground-source-server-detail-main
.playground-source-server-usage-activity-table {
  flex: 1 1 0;
  display: flex;
  overflow: hidden;
}

.playground-source-server-detail-main
.playground-source-server-usage-activity-table
> .platform-data-table.is-fill-layout,
.playground-source-server-detail-main
.playground-source-server-usage-activity-table
> .platform-data-table.is-fill-layout
> .platform-data-table__surface,
.playground-source-server-detail-main
.playground-source-server-usage-activity-table
.platform-data-table.is-fill-layout
.platform-data-table__table,
.playground-source-server-detail-main
.playground-source-server-usage-activity-table
.platform-data-table.is-fill-layout
.platform-data-table__scroll {
  flex: 1 1 0;
  min-height: 0;
  height: 100%;
  max-height: none;
}

.playground-source-server-detail-main .playground-server-settings-tab > * {
  margin-block: 0;
}

.playground-source-server-detail-main .playground-server-custom-domains-platform-table {
  margin-block: 0;
  padding-block: 0;
}

.playground-source-server-detail-main
.playground-server-settings-tab.is-source-deployable-settings-tab
.playground-server-settings-description-section
.platform-instructions-editor__title {
  font-size: 14px;
}

.playground-source-server-detail-main
.playground-server-settings-tab.is-source-deployable-settings-tab
.playground-server-settings-description-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.playground-source-server-detail-main
.playground-server-settings-tab.is-function-settings-tab
.playground-server-invoke-card {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
}

.playground-source-server-detail-main
.playground-server-settings-tab.is-function-settings-tab
.playground-server-invoke-card::before {
  content: none;
  display: none;
}

.playground-agent-runtime-detail-content .playground-server-invoke-card {
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
}

.playground-agent-runtime-detail-content .playground-server-invoke-card::before {
  content: none;
  display: none;
}

.playground-resources-page.is-develop-server-kind-page
.playground-server-detail-metrics
.playground-agent-runtime-settings-card.playground-server-details-card {
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(255, 255, 255, 0.075);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.playground-resources-page.is-develop-server-kind-page
.playground-server-detail-metrics
.playground-agent-runtime-settings-card.playground-server-details-card::before {
  content: none;
  display: none;
}

.playground-agent-runtime-skills-popup {
  z-index: 12080;
  display: flex;
  width: 280px;
  height: 284px;
  padding: 0;
  flex-direction: column;
}

.playground-agent-runtime-sidebar-deploy-selector {
  margin-top: 12px;
}

.playground-source-server-detail-main .playground-server-detail-page__header-content,
.playground-source-server-detail-main .playground-server-detail-profile-section,
.playground-source-server-detail-main .playground-server-detail-title-row {
  width: 100%;
  min-width: 0;
}

.playground-source-server-detail-main .playground-server-detail-profile-section,
.playground-source-server-detail-main .playground-server-detail-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.playground-source-server-detail-main
.playground-server-detail-title-row
.playground-server-function-title-input {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}

.playground-source-server-detail-main .playground-server-detail-page.is-code-tab {
  height: 100%;
  min-height: 0;
  grid-template-rows: auto auto minmax(0, 1fr);
}

.playground-resources-page.is-develop-server-kind-page.is-source-server-code-tab
> .playground-environments-detail-scroll.playground-settings-detail-scroll.is-source-server-code-tab,
.playground-content-body.is-source-deployable-code-route
> .playground-resources-page.is-develop-server-kind-page
> .playground-environments-detail-scroll.playground-settings-detail-scroll,
.playground-resources-page.is-develop-server-kind-page:has(
  .playground-source-server-detail-main.is-source-server-code-tab
)
> .playground-environments-detail-scroll.playground-settings-detail-scroll {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  gap: 0;
  overflow: hidden;
}

.playground-resources-page.is-develop-server-kind-page.is-source-server-code-tab
.playground-resources-detail-content.is-source-server-code-tab,
.playground-content-body.is-source-deployable-code-route
> .playground-resources-page.is-develop-server-kind-page
> .playground-environments-detail-scroll.playground-settings-detail-scroll
> .playground-resources-detail-content,
.playground-resources-page.is-develop-server-kind-page:has(
  .playground-source-server-detail-main.is-source-server-code-tab
)
> .playground-environments-detail-scroll.playground-settings-detail-scroll
> .playground-resources-detail-content,
.playground-resources-page.is-develop-server-kind-page.is-source-server-code-tab
.playground-source-server-detail-main.is-source-server-code-tab,
.playground-source-server-detail-main
.playground-environments-detail-scroll.playground-environments-editor-scroll.is-source-server-code-tab,
.playground-source-server-detail-main
.playground-server-detail-page.is-source-deployable-server-detail.is-source-server-code-tab,
.playground-source-server-detail-main
.playground-server-detail-page__content.is-source-server-code-tab,
.playground-resources-page.is-develop-server-kind-page
.playground-server-detail-content.is-code-tab.is-source-server-code-tab,
.playground-source-server-detail-main
.playground-servers-editor-layout.is-source-server-code-tab {
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-resources-page.is-develop-server-kind-page,
.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-resources-page.is-develop-server-kind-page
> .playground-environments-detail-scroll.playground-settings-detail-scroll,
.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-resources-page.is-develop-server-kind-page
.playground-resources-detail-content,
.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-source-server-detail-main,
.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-source-server-detail-main
.playground-server-detail-page,
.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-source-server-detail-main
.playground-server-detail-page__content,
.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-resources-page.is-develop-server-kind-page
.playground-server-detail-content.is-code-tab,
.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-source-server-detail-main
.playground-environments-detail-scroll.playground-environments-editor-scroll,
.playground-content-body:has(.platform-code-editor-workspace.is-full-screen)
.playground-source-server-detail-main
.playground-servers-editor-layout {
  box-sizing: border-box;
  width: 100% !important;
  max-width: none !important;
  min-height: 0;
  height: 100%;
  max-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.playground-source-server-detail-main
.playground-server-detail-page.is-source-deployable-server-detail.is-code-tab {
  grid-template-rows: minmax(0, 1fr);
}

.playground-source-server-detail-main .playground-server-detail-page__content.is-code-tab {
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.playground-source-server-detail-main .playground-server-source-code-workspace {
  min-height: 0;
  height: 100%;
  max-height: none;
}

.playground-source-server-detail-main .playground-server-source-code-workspace.is-dragging::after {
  content: "Drop files to upload";
  pointer-events: none;
  position: absolute;
  inset: 10px;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(102, 166, 255, 0.72);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.64);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.playground-source-server-detail-main
.playground-server-detail-page
> .playground-server-detail-sidebar.playground-project-overview-sidebar {
  min-width: 0;
  align-self: start;
  top: 0;
  margin-top: 0;
}

.playground-source-server-detail-main
.playground-server-detail-sidebar
.playground-project-overview-sidebar-row {
  grid-template-columns: minmax(92px, 0.82fr) minmax(0, 1.38fr);
}

.playground-source-server-detail-main
.playground-server-detail-sidebar
.playground-project-overview-sidebar-row-value {
  min-width: 0;
  justify-content: flex-end;
  text-align: right;
}

.playground-develop-resource-identity-value,
.playground-server-detail-sidebar-identity-cell .resource-overview-identity {
  width: 100%;
  min-width: 0;
  justify-content: flex-end;
}

.playground-develop-resource-identity-value .playground-team-table-title,
.playground-server-detail-sidebar-identity-cell .resource-overview-identity__title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playground-server-detail-properties-card
.playground-develop-resource-identity-value
.playground-team-member-avatar,
.playground-server-detail-properties-card
.playground-server-detail-sidebar-owner-cell
.playground-team-member-avatar,
.playground-server-detail-properties-card
.resource-overview-identity__visual {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  font-size: 8px;
}

.playground-server-detail-properties-card
.playground-develop-resource-identity-value
.playground-team-member-avatar-image,
.playground-server-detail-properties-card
.playground-server-detail-sidebar-owner-cell
.playground-team-member-avatar-image,
.playground-server-detail-properties-card
.resource-overview-identity__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playground-server-detail-properties-card
.playground-server-detail-sidebar-owner-row {
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.playground-source-server-detail-main .playground-server-detail-properties-card {
  position: relative;
  z-index: 2;
}

.playground-source-server-detail-main
.playground-server-detail-sidebar-owner-row,
.playground-source-server-detail-main
.playground-server-detail-sidebar-owner-cell {
  overflow: visible;
}

.playground-source-server-detail-main
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector {
  width: 100%;
  max-width: 100%;
}

.playground-source-server-detail-main
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector-trigger {
  width: 100%;
  max-width: 100%;
}

.playground-source-server-detail-main
.playground-source-server-sidebar-deploy-selector {
  margin-top: 12px;
}

.playground-source-server-detail-main
.playground-server-settings-tab.is-source-deployable-settings-tab
.playground-environments-connections-section {
  margin-bottom: 42px;
}

.playground-source-server-detail-main
.playground-server-detail-page:is(.is-function-server-detail, .is-web-app-server-detail)
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector-trigger {
  justify-content: flex-end;
  text-align: right;
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
> .platform-ui-card__sidebar-header {
  margin-bottom: 18px;
}

.playground-source-server-detail-main
.playground-server-detail-page.is-web-app-server-detail
.playground-server-settings-tab.is-web-app-settings-tab
.playground-environments-connections-title {
  margin-bottom: 18px;
}

.playground-source-server-detail-main
.playground-server-detail-sidebar-connections {
  gap: 0;
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-tasks-detail-facts {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-tasks-detail-facts::before {
  content: none;
  display: none;
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-tasks-detail-facts-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-tasks-detail-fact {
  grid-template-columns: minmax(92px, 0.82fr) minmax(0, 1.38fr);
  min-height: 32px;
  padding: 6px 0;
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-tasks-detail-fact-label {
  color: rgba(255, 255, 255, 0.5);
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-tasks-detail-fact-control {
  overflow: visible;
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-server-detail-selector-trigger,
.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-server-detail-selector-trigger:hover,
.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-server-detail-selector-trigger:focus-visible {
  background: transparent !important;
}

.playground-source-server-detail-main
.playground-server-detail-connections-card
.playground-server-detail-selector {
  width: 100%;
}

.playground-source-server-detail-main
.playground-server-detail-sidebar
.playground-environments-editor-fact-value {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

.playground-database-detail-main .playground-server-detail-page {
  width: min(100%, var(--playground-centered-page-max-width));
  max-width: var(--playground-centered-page-max-width);
  margin: 0 auto;
}

.playground-database-detail-main .playground-server-detail-page.is-database-data-tab {
  height: 100%;
  min-height: 0;
  grid-template-rows: auto minmax(0, 1fr);
}

.playground-database-detail-main
.playground-server-detail-page__content.is-database-data-tab {
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.playground-database-detail-main
.playground-server-detail-page
> .playground-server-detail-sidebar.playground-project-overview-sidebar {
  min-width: 0;
  align-self: start;
  top: 0;
  margin-top: 0;
}

.playground-database-detail-main
.playground-server-detail-sidebar
.playground-project-overview-sidebar-row {
  grid-template-columns: minmax(92px, 0.82fr) minmax(0, 1.38fr);
}

.playground-database-detail-main
.playground-server-detail-sidebar
.playground-project-overview-sidebar-row-value {
  min-width: 0;
  justify-content: flex-end;
  text-align: right;
}

.playground-database-detail-main .playground-server-detail-properties-card {
  position: relative;
  z-index: 2;
}

.playground-database-detail-main
.playground-server-detail-sidebar-owner-row,
.playground-database-detail-main
.playground-server-detail-sidebar-owner-cell {
  overflow: visible;
}

.playground-database-detail-main
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector,
.playground-database-detail-main
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector-trigger {
  width: 100%;
  max-width: 100%;
}

.playground-database-detail-main
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector-trigger {
  justify-content: flex-end;
  text-align: right;
}

.playground-database-detail-main
.playground-server-detail-sidebar
.playground-environments-editor-fact-value {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

.playground-managed-data-detail-main .playground-server-detail-page {
  width: min(100%, var(--playground-centered-page-max-width));
  max-width: var(--playground-centered-page-max-width);
  margin: 0 auto;
}

.playground-managed-data-detail-main .playground-server-detail-content,
.playground-managed-data-detail-main .playground-server-settings-tab {
  display: flex;
  flex-direction: column;
  gap: var(--resource-detail-section-gap);
}

.playground-managed-data-detail-main .playground-server-settings-tab > * {
  margin-block: 0;
}

.playground-managed-data-detail-main .playground-server-detail-page__header-content,
.playground-managed-data-detail-main .playground-server-detail-profile-section,
.playground-managed-data-detail-main .playground-server-detail-title-row {
  width: 100%;
  min-width: 0;
}

.playground-managed-data-detail-main .playground-server-detail-profile-section,
.playground-managed-data-detail-main .playground-server-detail-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.playground-managed-data-detail-main
.playground-server-detail-title-row
.playground-server-function-title-input {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}

.playground-managed-data-detail-main .playground-server-detail-page.is-managed-data-list-tab {
  height: 100%;
  min-height: 0;
  grid-template-rows: auto auto minmax(0, 1fr);
}

.playground-managed-data-detail-main
.playground-server-detail-page.is-headerless.is-tabless.is-managed-data-list-tab {
  grid-template-rows: minmax(0, 1fr);
}

.playground-managed-data-detail-main
.playground-server-detail-page__content.is-managed-data-list-tab {
  min-height: 0;
  height: 100%;
  overflow: hidden;
}

.playground-managed-data-detail-main
.playground-server-settings-tab:is(.is-auth-settings-tab, .is-agent-runtime-settings-tab, .is-secrets-settings-tab, .is-payments-settings-tab)
:is(.playground-auth-description-section, .playground-agent-runtime-description-section, .playground-secrets-description-section, .playground-payments-description-section)
.platform-instructions-editor__title {
  font-size: 14px;
}

.playground-managed-data-detail-main
.playground-server-detail-page
> .playground-server-detail-sidebar.playground-project-overview-sidebar {
  min-width: 0;
  align-self: start;
  top: 0;
  margin-top: 0;
}

.playground-managed-data-detail-main
.playground-server-detail-sidebar
.playground-project-overview-sidebar-row {
  grid-template-columns: minmax(92px, 0.82fr) minmax(0, 1.38fr);
}

.playground-managed-data-detail-main
.playground-server-detail-sidebar
.playground-project-overview-sidebar-row-value {
  min-width: 0;
  justify-content: flex-end;
  text-align: right;
}

.playground-managed-data-detail-main .playground-server-detail-properties-card {
  position: relative;
  z-index: 2;
}

.playground-managed-data-detail-main
.playground-server-detail-sidebar-owner-row,
.playground-managed-data-detail-main
.playground-server-detail-sidebar-owner-cell {
  overflow: visible;
}

.playground-managed-data-detail-main
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector,
.playground-managed-data-detail-main
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector-trigger {
  width: 100%;
  max-width: 100%;
}

.playground-managed-data-detail-main
.playground-server-detail-sidebar-owner-cell
.playground-server-owner-selector-trigger {
  justify-content: flex-end;
  text-align: right;
}

.playground-managed-data-detail-main
.playground-server-detail-sidebar
.playground-environments-editor-fact-value {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

.playground-managed-data-detail-main .playground-managed-data-list-surface,
.playground-managed-data-detail-main .playground-managed-data-list-table {
  flex: 1 1 0;
  min-height: 0;
  height: 100%;
}

.playground-managed-data-detail-main .playground-managed-data-list-surface {
  display: flex;
  flex-direction: column;
  padding: 12px 3px 3px;
  overflow: hidden;
}

.playground-managed-data-detail-main
.playground-managed-data-list-table
> .platform-data-table__toolbar {
  padding-right: 9px;
  padding-left: 9px;
}

.playground-managed-data-detail-main
.playground-managed-data-list-table.is-minimalistic-ui
> .platform-data-table__surface {
  flex: 1 1 0;
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #000;
  overflow: hidden;
}

.playground-managed-data-detail-main
.playground-managed-data-list-table.is-fill-layout
.platform-data-table__table,
.playground-managed-data-detail-main
.playground-managed-data-list-table.is-fill-layout
.platform-data-table__scroll,
.playground-managed-data-detail-main
.playground-managed-data-list-table.is-fill-layout
.platform-data-table__body.has-state,
.playground-managed-data-detail-main
.playground-managed-data-list-table.is-fill-layout
.platform-data-table__state-row {
  flex: 1 1 0;
  min-height: 0;
  height: 100%;
}

.playground-voice-agent-detail-main {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  padding: 42px 42px 10px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.playground-voice-agent-detail-main::-webkit-scrollbar {
  display: none;
}

.playground-voice-agent-detail-main .playground-voice-agent-detail-title {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playground-voice-agent-detail-main .playground-server-detail-content,
.playground-voice-agent-detail-main .playground-voice-agent-settings-tab {
  display: flex;
  flex-direction: column;
  gap: var(--resource-detail-section-gap);
}

.playground-voice-agent-detail-main .playground-voice-agent-settings-tab > * {
  margin-block: 0;
}

.playground-voice-agent-configuration-card,
.playground-voice-agent-phone-card,
.playground-voice-agent-session-card {
  padding: 18px;
}

.playground-voice-agent-detail-section-header {
  min-width: 0;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.playground-voice-agent-detail-section-header h2,
.playground-voice-agent-detail-section-header p {
  margin: 0;
  letter-spacing: 0;
}

.playground-voice-agent-detail-section-header h2 {
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.playground-voice-agent-detail-section-header p {
  max-width: 620px;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
}

.playground-voice-agent-configuration-grid {
  display: flex;
  flex-direction: column;
}

.playground-voice-agent-configuration-row {
  min-width: 0;
  min-height: 42px;
  padding: 6px 0;
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
}

.playground-voice-agent-configuration-row:first-child {
  border-top: 0;
}

.playground-voice-agent-configuration-row .platform-selector {
  width: 100%;
  min-width: 0;
}

.playground-voice-agent-configuration-row .platform-selector__trigger {
  width: 100%;
  justify-content: flex-end;
  text-align: right;
}

.playground-voice-agent-configuration-row .playground-settings-input {
  width: 100%;
  min-width: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: right;
}

.playground-voice-agent-phone-actions,
.playground-voice-agent-session-actions,
.playground-voice-agent-detail-sidebar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.playground-voice-agent-phone-actions {
  justify-content: space-between;
}

.playground-voice-agent-phone-number {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 400;
}

.playground-voice-agent-detail-sidebar-actions {
  align-items: stretch;
  flex-direction: column;
}

.playground-voice-agent-detail-sidebar-actions .platform-button {
  width: 100%;
  justify-content: flex-start;
}

.playground-voice-agent-detail-properties-card .playground-project-overview-sidebar-row-value {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playground-voice-agent-detail-properties-card
.playground-project-overview-sidebar-row-value:has(.resource-overview-identity) {
  overflow: visible;
}

.playground-voice-agent-detail-properties-card .playground-project-overview-sidebar-row-value .is-id {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .playground-voice-agent-detail-main {
    padding: 18px 12px 10px;
  }

  .playground-voice-agent-configuration-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .playground-voice-agent-configuration-row .platform-selector__trigger,
  .playground-voice-agent-configuration-row .playground-settings-input {
    justify-content: flex-start;
    text-align: left;
  }
}

.playground-source-server-detail-main .playground-server-detail-sidebar-url-cell {
  overflow: hidden;
}

.playground-source-server-detail-main .playground-server-detail-sidebar-url-value {
  min-width: 0;
}

.playground-source-server-detail-main .playground-server-detail-sidebar-url-link {
  min-width: 0;
  overflow: hidden;
  color: #4da3ff;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playground-source-server-detail-main .playground-server-detail-sidebar-url-link:hover {
  color: #7ebcff;
}

.playground-source-server-detail-main
.playground-server-detail-page.is-source-deployable-server-detail
.playground-server-detail-sidebar-url-link,
.playground-source-server-detail-main
.playground-server-detail-page.is-source-deployable-server-detail
.playground-server-detail-sidebar-url-link:hover {
  color: #fff;
}

.playground-resources-page.is-develop-server-kind-page.is-source-server-usage-tab
> .playground-environments-detail-scroll.playground-settings-detail-scroll.is-source-server-usage-tab {
  padding-bottom: 10px;
}


.resource-overview-page.is-develop-security,
.develop-security-repository-modal,
.develop-security-resource-detail {
  --develop-security-border: rgba(255, 255, 255, 0.075);
  --develop-security-muted: rgba(255, 255, 255, 0.55);
  color: #fff;
  color-scheme: dark;
}

.resource-overview-page.is-develop-security {
  gap: 48px;
}

.develop-security-overview-hero {
  flex: 0 0 auto;
  min-width: 0;
}

.develop-security-overview-features {
  margin-top: 44px;
}

.develop-security-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 14px;
}

.develop-security-metric {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 18px;
}

.develop-security-metric > span {
  color: var(--develop-security-muted);
  font-size: 12px;
  font-weight: 600;
}

.develop-security-metric > strong {
  overflow: hidden;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: capitalize;
}

.develop-security-metric > small {
  color: var(--develop-security-muted);
  font-size: 11px;
}

.develop-security-metric.is-danger {
  border-color: rgba(248, 113, 113, 0.28);
  background: rgba(239, 68, 68, 0.08);
}

.develop-security-metric.is-success {
  border-color: rgba(74, 222, 128, 0.24);
  background: rgba(34, 197, 94, 0.06);
}

.develop-security-callout {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 16px;
  border-color: rgba(77, 163, 255, 0.26);
  background: rgba(59, 130, 246, 0.09);
  color: #fff;
}

.develop-security-callout > svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #2563eb;
}

.develop-security-callout > div {
  display: grid;
  gap: 3px;
}

.develop-security-callout strong,
.develop-security-callout span {
  display: block;
}

.develop-security-callout span {
  color: var(--develop-security-muted);
  font-size: 12px;
  line-height: 1.5;
}

.develop-security-callout.is-danger {
  border-color: rgba(248, 113, 113, 0.3);
  background: rgba(239, 68, 68, 0.09);
}

.develop-security-callout.is-danger > svg {
  color: #dc2626;
}

.develop-security-request-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(245, 59, 58, 0.2);
  border-radius: 10px;
  background: rgba(245, 59, 58, 0.08);
  color: #fff;
  font-size: 12px;
}

.develop-security-request-notice > svg {
  flex: 0 0 auto;
  color: #f53b3a;
}

.develop-security-request-notice > span {
  flex: 1 1 auto;
  overflow-wrap: anywhere;
}

.develop-security-request-notice > button {
  flex: 0 0 auto;
}

.develop-security-detail-heading > span {
  color: var(--develop-security-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.develop-security-detail-heading h1 {
  margin: 0;
  font-size: 17px;
  font-weight: 630;
  letter-spacing: -0.02em;
}

.develop-security-detail-heading p {
  margin: 0;
  color: var(--develop-security-muted);
  font-size: 12px;
  line-height: 1.5;
}

.develop-security-repository-modal__body {
  min-height: 320px;
}

.develop-security-repository-modal__search.platform-search {
  width: min(320px, 42vw);
  min-width: 220px;
  height: 32px;
}

.develop-security-repository-management {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.develop-security-repository-management__table {
  --platform-data-table-minimal-inline-padding: 10px;
  --platform-data-table-surface: transparent;
  --platform-data-table-body-background: transparent;
  --platform-data-table-row-background: transparent;
  --platform-data-table-header-background: transparent;
  --platform-data-table-sticky-background: transparent;
  min-width: 0;
  background: transparent;
}

.develop-security-repository-management__table.is-minimalistic-ui
  .platform-data-table__surface,
.develop-security-repository-management__table.is-minimalistic-ui
  .platform-data-table__table,
.develop-security-repository-management__table.is-minimalistic-ui
  .platform-data-table__sticky,
.develop-security-repository-management__table.is-minimalistic-ui
  .platform-data-table__header-group,
.develop-security-repository-management__table.is-minimalistic-ui
  .platform-data-table__header,
.develop-security-repository-management__table.is-minimalistic-ui
  .platform-data-table__scroll,
.develop-security-repository-management__table.is-minimalistic-ui
  .platform-data-table__body,
.develop-security-repository-management__table.is-minimalistic-ui
  .platform-data-table__row {
  background: transparent;
}

.develop-security-repository-management__table .platform-selector__trigger {
  justify-content: space-between;
}

.develop-security-repository-management__error {
  padding: 10px 12px;
}

.develop-security-repository-modal__selection-summary {
  margin-right: auto;
  color: var(--develop-security-muted);
  font-size: 12px;
}

.develop-security-inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.develop-security-version-controls {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.playground-security-repository-title-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.develop-security-table-stack {
  display: grid;
  align-items: start;
  justify-items: start;
  gap: 4px;
  min-width: 0;
}

.develop-security-table-stack > span,
.develop-security-table-stack > code {
  overflow: hidden;
  max-width: 100%;
  color: var(--develop-security-muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.develop-security-finding-title {
  overflow: hidden;
  max-width: 100%;
  color: #fff;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.develop-security-inline-code,
.develop-security-properties code,
.develop-security-table-stack code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.develop-security-resource-detail {
  min-height: 0;
}

.playground-security-agent-detail-main .playground-server-detail-page {
  width: min(100%, var(--playground-centered-page-max-width));
  max-width: var(--playground-centered-page-max-width);
  margin: 0 auto;
}

.playground-security-agent-detail-content,
.playground-security-agent-detail-content > .develop-security-detail-stack {
  gap: var(--resource-detail-section-gap);
}

.playground-security-agent-detail-main
  .playground-server-detail-page
  > .playground-security-agent-detail-sidebar.playground-project-overview-sidebar {
  min-width: 0;
  align-self: start;
  top: 0;
  margin-top: 0;
}

.playground-security-agent-detail-main
  .playground-security-agent-detail-sidebar
  .playground-project-overview-sidebar-row {
  grid-template-columns: minmax(92px, 0.82fr) minmax(0, 1.38fr);
}

.playground-security-agent-detail-main
  .playground-security-agent-detail-sidebar
  .playground-project-overview-sidebar-row-value {
  min-width: 0;
  justify-content: flex-end;
  text-align: right;
}

.playground-security-agent-detail-properties-card {
  position: relative;
  z-index: 2;
}

.playground-security-agent-detail-properties-card
  .playground-server-detail-sidebar-identity-cell
  .resource-overview-identity {
  width: 100%;
  min-width: 0;
  justify-content: flex-end;
}

.playground-security-agent-detail-properties-card
  .resource-overview-identity__visual,
.playground-security-agent-detail-properties-card
  .playground-server-detail-sidebar-owner-cell
  .playground-team-member-avatar {
  width: 20px;
  height: 20px;
  min-height: 20px;
}

.develop-security-repository-run-scan {
  width: 100%;
  margin-top: 12px;
}

.develop-security-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.develop-security-detail-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(77, 163, 255, 0.24);
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.09);
  color: #4da3ff;
}

.develop-security-detail-heading {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.develop-security-detail-heading h1,
.develop-security-detail-heading p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.develop-security-detail-heading p > span,
.develop-security-detail-heading p {
  display: flex;
  align-items: center;
  gap: 5px;
}

.develop-security-detail-stack,
.develop-security-artifact-list {
  display: grid;
  gap: 14px;
}

.develop-security-artifact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.develop-security-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.develop-security-run-narrative-section {
  display: grid;
  gap: 12px;
}

.develop-security-run-kpis .platform-analytics__metrics {
  padding-bottom: 0;
}

.develop-security-run-narrative-section h2 {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.develop-security-narrative {
  margin: 0;
  max-width: 92ch;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 13px !important;
  line-height: 1.65 !important;
  white-space: pre-wrap;
}

.develop-security-content-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
}

.develop-security-content-card > p,
.develop-security-muted {
  margin: 0;
  color: var(--develop-security-muted);
  font-size: 12px;
  line-height: 1.55;
}

.develop-security-content-card h3 {
  margin: 5px 0 -4px;
  font-size: 12px;
}

.develop-security-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.develop-security-card-heading > svg {
  flex: 0 0 auto;
  color: #2563eb;
}

.develop-security-card-heading > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.develop-security-card-heading strong,
.develop-security-card-heading span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.develop-security-card-heading span {
  color: var(--develop-security-muted);
  font-size: 10px;
}

.develop-security-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.develop-security-properties {
  display: grid;
  gap: 0;
  margin: 0;
}

.develop-security-properties.is-sidebar {
  display: flex;
  margin: 0;
}

.develop-security-properties.is-sidebar > div {
  display: grid;
  padding: 0;
  border-bottom: 0;
}

.develop-security-properties.is-sidebar dt,
.develop-security-properties.is-sidebar dd {
  max-width: none;
  font-size: 12px;
}

.develop-security-properties.is-sidebar dt {
  color: #fff;
}

.develop-security-properties.is-sidebar dd {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.develop-security-properties > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--develop-security-border);
}

.develop-security-properties > div:last-child {
  border-bottom: 0;
}

.develop-security-properties dt,
.develop-security-properties dd {
  min-width: 0;
  margin: 0;
  font-size: 10px;
}

.develop-security-properties dt {
  color: var(--develop-security-muted);
}

.develop-security-properties dd {
  overflow: hidden;
  max-width: 145px;
  text-align: right;
  text-overflow: ellipsis;
}

.develop-security-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.develop-security-form-grid label,
.develop-security-form-field {
  display: grid;
  align-content: start;
  gap: 6px;
  color: var(--develop-security-muted);
  font-size: 11px;
  font-weight: 600;
}

.develop-security-form-grid label.is-wide,
.develop-security-form-field.is-wide {
  grid-column: 1 / -1;
}

.develop-security-form-grid label.is-checkbox,
.develop-security-form-field.is-checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  align-content: center;
  min-height: 37px;
}

.develop-security-form-grid input:not([type="checkbox"]),
.develop-security-form-grid textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--develop-security-border);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-weight: 450;
  resize: vertical;
}

.develop-security-form-grid input:focus,
.develop-security-form-grid textarea:focus {
  border-color: color-mix(in srgb, #2563eb 65%, var(--develop-security-border));
  box-shadow: 0 0 0 3px rgb(37 99 235 / 10%);
}

.develop-security-version-description-field {
  display: grid;
  gap: 8px;
  color: var(--develop-security-muted);
  font-size: 11px;
  font-weight: 600;
}

.develop-security-version-description-field textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--develop-security-border);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-weight: 450;
  resize: vertical;
}

.develop-security-version-description-field textarea:focus {
  border-color: color-mix(in srgb, #2563eb 65%, var(--develop-security-border));
  box-shadow: 0 0 0 3px rgb(37 99 235 / 10%);
}

.develop-security-version-compare-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.develop-security-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.develop-security-settings-root {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.develop-security-access-table {
  --platform-data-table-minimal-inline-padding: 10px;
  --platform-data-table-surface: transparent;
  --platform-data-table-body-background: transparent;
  --platform-data-table-row-background: transparent;
  --platform-data-table-header-background: transparent;
  --platform-data-table-sticky-background: transparent;
  min-width: 0;
  background: transparent;
}

.develop-security-access-team-cell {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.develop-security-access-team-cell > strong,
.develop-security-access-team-cell > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.develop-security-access-team-cell > span,
.develop-security-access-menu-empty {
  color: var(--develop-security-muted);
  font-size: 10px;
}

.develop-security-access-team-option {
  justify-content: flex-start;
  width: 100%;
}

.develop-security-access-menu-empty {
  padding: 10px 12px;
  line-height: 1.45;
}

.develop-security-access-editor {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.develop-security-access-editor__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.develop-security-access-editor__header > div {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.develop-security-access-editor__header span {
  color: var(--develop-security-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.develop-security-access-editor__header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 640;
  letter-spacing: -0.025em;
}

.develop-security-json {
  overflow: auto;
  max-height: 420px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--develop-security-border);
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.32);
  color: inherit;
  font:
    10px / 1.6 ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.develop-security-location-list {
  display: grid;
  gap: 8px;
}

.develop-security-external-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  color: var(--playground-accent, #1f6feb);
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
}

.develop-security-timeline {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  list-style: none;
}

.develop-security-timeline > li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--develop-security-muted);
}

.develop-security-timeline > li::before {
  position: absolute;
  top: 5px;
  right: 50%;
  left: -50%;
  height: 1px;
  background: var(--develop-security-border);
  content: "";
}

.develop-security-timeline > li:first-child::before {
  display: none;
}

.develop-security-timeline span {
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid var(--develop-security-border);
  border-radius: 50%;
  background: #000;
}

.develop-security-timeline small {
  overflow: hidden;
  max-width: 100%;
  font-size: 12px;
  text-overflow: ellipsis;
}

.develop-security-timeline > .is-complete::before,
.develop-security-timeline > .is-current::before {
  background: #2563eb;
}

.develop-security-timeline > .is-complete span,
.develop-security-timeline > .is-current span {
  border-color: #2563eb;
  background: #2563eb;
}

.develop-security-timeline > .is-current span {
  box-shadow: 0 0 0 4px rgb(37 99 235 / 14%);
}

.develop-security-page-state {
  display: grid;
  min-height: min(520px, 70vh);
  place-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--develop-security-muted, rgba(255, 255, 255, 0.55));
  font-size: 12px;
}

.develop-security-detail-loading-state.platform-loading-state {
  min-height: max(320px, calc(100dvh - 148px));
  color: var(--develop-security-muted, rgba(255, 255, 255, 0.55));
}

@media (max-width: 1000px) {
  .develop-security-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .develop-security-timeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 18px;
  }
  .develop-security-timeline > li:nth-child(6)::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .resource-overview-page.is-develop-security {
    gap: 32px;
  }
  .develop-security-overview-features {
    margin-top: 32px;
  }
  .develop-security-repository-modal__search.platform-search {
    width: min(240px, 42vw);
    min-width: 140px;
  }
  .develop-security-metric-grid,
  .develop-security-card-grid,
  .develop-security-artifact-list,
  .develop-security-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .develop-security-form-grid label.is-wide,
  .develop-security-form-field.is-wide {
    grid-column: auto;
  }
}


.develop-evidence-agents {
  --develop-evidence-muted: rgba(255, 255, 255, 0.56);
  --develop-evidence-border: rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;
  padding: 40px 48px 64px;
  color: #f7f7f7;
}

.develop-evidence-agents .platform-page-hero,
.develop-evidence-agents__features,
.develop-evidence-agents__queue,
.develop-evidence-agents__detail-grid {
  width: 100%;
  max-width: 1560px;
  margin-inline: auto;
}

.develop-evidence-agents__features {
  margin-top: 84px;
}

.develop-evidence-agents__queue {
  margin-top: 48px;
}

.develop-evidence-agents__queue .platform-data-table {
  background: transparent;
}

.develop-evidence-agents__queue .platform-data-table__toolbar h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 620;
}

.develop-evidence-agents__loading,
.develop-evidence-agents__empty {
  display: grid;
  min-height: 320px;
  place-items: center;
}

.develop-evidence-agents__finding-cell,
.develop-evidence-agents__publication-cell {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.develop-evidence-agents__finding-cell strong,
.develop-evidence-agents__publication-cell strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 590;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.develop-evidence-agents__finding-cell span,
.develop-evidence-agents__publication-cell span,
.develop-evidence-agents__service-note {
  color: var(--develop-evidence-muted);
  font-size: 12px;
}

.develop-evidence-agents__service-note {
  max-width: 1560px;
  margin: 18px auto 0;
}

.develop-evidence-agents__detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  margin-top: 40px;
  align-items: start;
}

.develop-evidence-agents__detail-main,
.develop-evidence-agents__detail-sidebar {
  display: grid;
  gap: 20px;
}

.develop-evidence-agents__review-card {
  display: grid;
  gap: 22px;
  padding: 28px;
}

.develop-evidence-agents__detail-sidebar .platform-ui-card {
  display: grid;
  gap: 18px;
}

.develop-evidence-agents__detail-sidebar h2,
.develop-evidence-agents__card-header h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 17px;
  font-weight: 620;
}

.develop-evidence-agents__card-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.develop-evidence-agents__card-header > div {
  display: grid;
  gap: 6px;
}

.develop-evidence-agents__eyebrow {
  color: var(--develop-evidence-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.develop-evidence-agents__field {
  display: grid;
  gap: 9px;
}

.develop-evidence-agents__field > span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 560;
}

.develop-evidence-agents__field textarea {
  box-sizing: border-box;
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  outline: 0;
  background: rgba(255, 255, 255, 0.035);
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 14px;
  line-height: 1.55;
}

.develop-evidence-agents__field textarea:focus {
  border-color: rgba(103, 145, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(68, 112, 255, 0.12);
}

.develop-evidence-agents__field textarea:disabled {
  opacity: 0.58;
}

.develop-evidence-agents__quote {
  margin: 0;
  border-left: 2px solid rgba(113, 153, 255, 0.72);
  padding: 3px 0 3px 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

.develop-evidence-agents__source-location {
  margin: -8px 0 0 20px;
  color: var(--develop-evidence-muted);
  font-size: 12px;
}

.develop-evidence-agents__decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.develop-evidence-agents__error {
  margin: 0;
  color: #ff8585;
  font-size: 13px;
  line-height: 1.45;
}

.develop-evidence-agents__properties {
  display: grid;
  gap: 15px;
  margin: 0;
}

.develop-evidence-agents__properties > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
}

.develop-evidence-agents__properties dt,
.develop-evidence-agents__properties dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.develop-evidence-agents__properties dt {
  color: var(--develop-evidence-muted);
}

.develop-evidence-agents__properties dd {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.86);
  text-align: right;
}

.develop-evidence-agents__assertion-list {
  display: grid;
  gap: 13px;
}

.develop-evidence-agents__assertion-list > div {
  display: grid;
  gap: 4px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--develop-evidence-border);
}

.develop-evidence-agents__assertion-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.develop-evidence-agents__assertion-list span {
  color: var(--develop-evidence-muted);
  font-size: 11px;
}

.develop-evidence-agents__assertion-list strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 540;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .develop-evidence-agents {
    padding: 28px 24px 48px;
  }

  .develop-evidence-agents__features {
    margin-top: 48px;
  }

  .develop-evidence-agents__detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .develop-evidence-agents {
    padding-inline: 16px;
  }

  .develop-evidence-agents__review-card {
    padding: 20px;
  }

  .develop-evidence-agents__decision-actions {
    display: grid;
  }
}


.platform-permissions-page,
.playground-permissions-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  overflow: visible;
}

.playground-agents-permissions-section {
  margin-top: 10px;
}

.playground-agents-permissions-title {
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.playground-agents-permissions-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.platform-agent-permissions-page {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.platform-permissions-page__overview,
.playground-permission-rings-overview {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-width: 0;
  margin-bottom: 42px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.075);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
}

.platform-permissions-settings-summary {
  min-width: 0;
  margin-bottom: 42px;
}

.platform-permissions-settings-summary__header {
  min-width: 0;
  min-height: 28px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.platform-permissions-settings-summary__title-row {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.platform-permissions-settings-summary__title {
  min-width: 0;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.platform-permissions-settings-summary > .platform-permissions-page__overview {
  margin-bottom: 0;
}

.playground-agent-settings-permissions-summary > .platform-permissions-page__overview {
  padding: 0;
  border: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.platform-permissions-settings-summary .platform-selector.is-disabled {
  opacity: 1;
}

.platform-permissions-page__overview.is-compact {
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 0;
  padding: 16px;
}

.platform-permissions-page__overview.is-compact .platform-permissions-page__visual,
.platform-permissions-page__overview.is-compact .playground-permission-rings-visual,
.platform-permissions-page__overview.is-compact .platform-permission-rings-chart,
.platform-permissions-page__overview.is-compact .playground-permission-rings-chart {
  width: 104px;
  height: 104px;
}

.platform-permissions-page__overview.is-compact .platform-permissions-page__summary,
.platform-permissions-page__overview.is-compact .playground-permission-rings-copy {
  --platform-permission-summary-icon-size: 24px;
  --platform-permission-summary-title-gap: 7px;
}

.platform-permissions-page__overview.is-compact .platform-permissions-page__summary-row,
.platform-permissions-page__overview.is-compact .playground-permission-ring-summary-row {
  min-height: 44px;
  padding: 8px 0;
}

.platform-permissions-page__overview.is-compact .platform-permissions-page__summary-title,
.platform-permissions-page__overview.is-compact .playground-permission-ring-summary-title {
  font-size: 12px;
}

.platform-permissions-page__visual,
.playground-permission-rings-visual,
.platform-permission-rings-chart,
.playground-permission-rings-chart {
  position: relative;
  width: 148px;
  height: 148px;
}

.platform-permissions-page__visual,
.playground-permission-rings-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.platform-permission-rings-chart__canvas,
.playground-permission-rings-canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.platform-permission-rings-chart__icon,
.playground-permission-rings-icon {
  position: absolute;
  left: 50%;
  top: var(--permission-ring-icon-top, 50%);
  z-index: 2;
  width: 11px;
  height: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.78);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.platform-permission-rings-chart__icon svg,
.playground-permission-rings-icon svg {
  width: 100%;
  height: 100%;
}

.platform-permissions-page__summary,
.playground-permission-rings-copy {
  --platform-permission-summary-icon-size: 28px;
  --platform-permission-summary-title-gap: 8px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.platform-permissions-page__summary-row,
.playground-permission-ring-summary-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 56px;
  padding: 12px 0;
  border-top: 0;
}

.platform-permissions-page__summary-row:not(:first-child)::before,
.playground-permission-ring-summary-row:not(:first-child)::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  left: calc(
    var(--platform-permission-summary-icon-size) +
    var(--platform-permission-summary-title-gap)
  );
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.platform-permissions-page__summary-copy,
.playground-permission-ring-summary-copy {
  min-width: 0;
}

.platform-permissions-page__summary-title-row,
.playground-permission-ring-summary-title-row {
  display: inline-flex;
  align-items: center;
  gap: var(--platform-permission-summary-title-gap);
  max-width: 100%;
  min-width: 0;
}

.platform-permissions-page__summary-title,
.playground-permission-ring-summary-title {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}

.platform-permissions-page__summary-info,
.playground-permission-ring-summary-info {
  position: relative;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  cursor: help;
}

.platform-permissions-page__summary-info:hover,
.platform-permissions-page__summary-info:focus-visible,
.playground-permission-ring-summary-info:hover,
.playground-permission-ring-summary-info:focus-visible {
  color: rgba(255, 255, 255, 0.84);
}

.platform-permissions-page__summary-info::after,
.playground-permission-ring-summary-info::after {
  content: attr(data-tooltip);
  pointer-events: none;
  position: absolute;
  z-index: 140;
  left: 50%;
  bottom: calc(100% + 8px);
  width: min(280px, 72vw);
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(32, 32, 34, 0.98);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.34);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 4px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s ease;
}

.platform-permissions-page__summary-info:hover::after,
.platform-permissions-page__summary-info:focus-visible::after,
.playground-permission-ring-summary-info:hover::after,
.playground-permission-ring-summary-info:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.platform-permission-help-tooltip.is-bottom::after {
  top: calc(100% + 8px);
  bottom: auto;
  transform: translate(-50%, -4px);
}

.platform-permission-help-tooltip.is-bottom:hover::after,
.platform-permission-help-tooltip.is-bottom:focus-visible::after {
  transform: translate(-50%, 0);
}

.platform-permissions-page__details,
.playground-permissions-panel-details {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.platform-permissions-page__ring-list,
.playground-agents-permissions-list {
  min-width: 0;
}

.platform-permissions-page__ring,
.playground-agents-permission-ring-card.is-details-only {
  min-width: 0;
}

.platform-permissions-page__ring:last-child,
.playground-agents-permission-ring-card.is-details-only:last-child {
  margin-bottom: 24px;
}

.platform-permissions-page__ring-title,
.playground-agents-permission-detail-ring-title-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.platform-permission-mini-ring-icon,
.playground-permission-mini-ring-icon {
  position: relative;
  display: inline-flex;
  width: var(--platform-permission-summary-icon-size, 24px);
  height: var(--platform-permission-summary-icon-size, 24px);
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--permission-mini-ring-icon-color, rgba(255, 255, 255, 0.72));
  border: 0;
  border-radius: 999px;
  background: transparent;
  overflow: visible;
}

.platform-permission-mini-ring-icon__canvas,
.playground-permission-mini-ring-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

.platform-permission-mini-ring-icon svg,
.playground-permission-mini-ring-icon svg {
  position: relative;
  z-index: 2;
  width: 10px;
  height: 10px;
}

.playground-agents-permission-ring-summary-icons {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
}

.playground-agents-permission-ring-summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.playground-agents-permission-ring-summary-icons .platform-permission-mini-ring-icon,
.playground-agents-permission-ring-summary-icons .playground-permission-mini-ring-icon {
  width: 26px;
  height: 26px;
}

.platform-permissions-page__action-copy,
.playground-agents-permission-copy {
  min-width: 0;
  flex: 1 1 210px;
}

.platform-permissions-page__action-title,
.playground-agents-permission-title {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.platform-permissions-page__action-description,
.playground-agents-permission-description {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.35;
}

.platform-permissions-page__override-badge {
  margin-left: 8px;
  vertical-align: middle;
}

.platform-permissions-page__selector,
.playground-agents-permission-select-shell.platform-selector {
  min-width: 126px;
}

.platform-permissions-page__selector.is-ring,
.playground-agents-permission-select-shell.platform-selector.is-ring {
  min-width: 104px;
}

.platform-permissions-page__selector .platform-selector__trigger {
  min-height: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.platform-permissions-page__selector .platform-selector__trigger:hover:not(:disabled),
.platform-permissions-page__selector .platform-selector__trigger:focus-visible {
  color: rgba(255, 255, 255, 0.96);
}

.platform-permissions-page__selector-popup {
  min-width: 180px;
}

.platform-permissions-page__effective-access,
.playground-agents-permission-effective-access {
  min-width: 92px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  line-height: 1.35;
  text-align: right;
}

.platform-permissions-page__ring-table .platform-permissions-page__selector,
.platform-permissions-page__ring-table
  .playground-agents-permission-select-shell.platform-selector {
  width: 100%;
}

.platform-permissions-page__ring-table .platform-permissions-page__effective-access,
.platform-permissions-page__ring-table .playground-agents-permission-effective-access {
  text-align: left;
}

.platform-permissions-page__ring-empty {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.platform-role-permissions-page,
.playground-team-role-pages {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  min-width: 0;
}

.platform-role-permissions-page__roles,
.playground-team-role-list {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.platform-role-permissions-page__role,
.playground-team-role-card {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.platform-role-permissions-page__role:hover,
.playground-team-role-card:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.platform-role-permissions-page__role:disabled,
.playground-team-role-card:disabled {
  cursor: default;
}

.platform-role-permissions-page__role:disabled:not(.is-active):hover,
.playground-team-role-card:disabled:not(.is-active):hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
}

.platform-role-permissions-page__role.is-active,
.playground-team-role-card.is-active {
  border: 0;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.platform-role-permissions-page__role.is-active:disabled,
.platform-role-permissions-page__role.is-active:disabled:hover,
.playground-team-role-card.is-active:disabled,
.playground-team-role-card.is-active:disabled:hover {
  border: 0;
  background: rgba(255, 255, 255, 0.075);
  color: #fff;
}

.platform-role-permissions-page__role-heading,
.playground-team-role-card-heading {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-role-permissions-page__role-title,
.playground-team-role-card-title {
  min-width: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.25;
}

.platform-role-permissions-page__content,
.playground-team-role-permission-page {
  min-width: 0;
  overflow: visible;
}

.platform-role-permissions-page__header,
.playground-team-role-permission-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.platform-role-permissions-page__title,
.playground-team-role-permission-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.15;
}

.platform-role-permissions-page__assigned-members {
  flex: 0 0 auto;
}

.platform-role-permissions-page__assigned-members-trigger {
  display: inline-flex;
  align-items: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.platform-role-permissions-page__assigned-members-trigger:hover,
.platform-role-permissions-page__assigned-members-trigger.is-open {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.platform-role-permissions-page__assigned-avatar-group {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
}

.platform-role-permissions-page__assigned-avatar,
.platform-role-permissions-page__assigned-empty-avatar,
.platform-role-permissions-page__assigned-popup-avatar {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid #121212;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.platform-role-permissions-page__assigned-avatar + .platform-role-permissions-page__assigned-avatar {
  margin-left: -7px;
}

.platform-role-permissions-page__assigned-avatar img,
.platform-role-permissions-page__assigned-popup-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.platform-role-permissions-page__assigned-empty-avatar {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
}

.platform-role-permissions-page__assigned-members-popup {
  width: min(360px, calc(100vw - 24px));
  max-height: min(360px, calc(100vh - 24px));
  overflow: auto;
  padding: 8px;
}

.platform-role-permissions-page__assigned-popup-title {
  padding: 6px 8px 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
}

.platform-role-permissions-page__assigned-popup-list {
  display: grid;
  gap: 2px;
}

.platform-role-permissions-page__assigned-popup-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 6px;
}

.platform-role-permissions-page__assigned-popup-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.platform-role-permissions-page__assigned-popup-avatar {
  flex-basis: 20px;
  border-width: 1px;
  font-size: 8px;
}

.platform-role-permissions-page__assigned-popup-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: grid;
  gap: 2px;
}

.platform-role-permissions-page__assigned-popup-name,
.platform-role-permissions-page__assigned-popup-detail,
.platform-role-permissions-page__assigned-popup-status {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-role-permissions-page__assigned-popup-name {
  color: rgba(255, 255, 255, 0.94);
  font-size: 12px;
  font-weight: 400;
}

.platform-role-permissions-page__assigned-popup-detail,
.platform-role-permissions-page__assigned-popup-status {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 400;
}

.platform-role-permissions-page__assigned-popup-status {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
}

.platform-role-permissions-page__assigned-popup-empty {
  padding: 12px 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

@media (max-width: 820px) {
  .platform-permissions-page__overview,
  .playground-permission-rings-overview {
    grid-template-columns: minmax(0, 1fr);
  }

  .platform-permissions-page__overview.is-compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .platform-permissions-page__action-copy,
  .platform-permissions-page__selector,
  .playground-agents-permission-copy,
  .playground-agents-permission-select-shell.platform-selector {
    min-width: 0;
    width: 100%;
  }

  .platform-permissions-page__effective-access,
  .playground-agents-permission-effective-access {
    min-width: 0;
    text-align: left;
  }

  .platform-role-permissions-page,
  .playground-team-role-pages {
    grid-template-columns: minmax(0, 1fr);
  }
}


.agent-publish-control {
  z-index: 74;
  display: inline-flex;
  align-items: center;
}

.agent-publish-control__menu.platform-popup-surface {
  min-width: 268px;
  transform-origin: top right;
}

.agent-publish-control__menu .tb-popup-row {
  padding: 10px 14px;
}

.agent-publish-control__action-copy {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.agent-publish-control__shortcut {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.agent-breadcrumb-version-label {
  margin-left: 6px;
  color: #fff;
}

.agent-breadcrumb-version-label .platform-version-label__separator {
  color: #fff;
}


.skill-detail-page__identity {
  box-sizing: border-box;
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-detail-page__icon-picker {
  --skill-detail-icon-size: 52px;

  flex: 0 0 auto;
}

.skill-detail-page__icon-picker .platform-project-icon-picker__trigger,
.skill-detail-page__icon-picker .platform-project-icon-picker__trigger-icon {
  flex-basis: var(--skill-detail-icon-size);
  width: var(--skill-detail-icon-size);
  height: var(--skill-detail-icon-size);
}

.skill-detail-page__icon-picker .platform-project-icon-picker__trigger-icon {
  border-radius: 12px;
  background: color-mix(
    in srgb,
    var(--project-icon-color, #fff) 10%,
    transparent
  );
  color: var(--project-icon-color, #fff);
}

.skill-detail-page__icon-picker
  .platform-project-icon-picker__trigger:not(:disabled):hover
  .platform-project-icon-picker__trigger-icon,
.skill-detail-page__icon-picker
  .platform-project-icon-picker__trigger.is-open
  .platform-project-icon-picker__trigger-icon {
  background: color-mix(
    in srgb,
    var(--project-icon-color, #fff) 16%,
    transparent
  );
}

.skill-detail-page__icon-picker
  .platform-project-icon-picker__trigger-icon
  > svg {
  width: 24px;
  height: 24px;
}

.skill-detail-page__icon-picker .platform-project-icon-picker__emoji {
  font-size: 24px !important;
}

.skill-detail-page__identity-copy {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.skill-detail-header__version-label {
  margin-left: 4px;
}

.skill-detail-page__name-input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font: inherit;
  letter-spacing: 0;
}

.skill-detail-page__name-input {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
}

.skill-detail-page__description-input {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.skill-detail-page__name-input:read-only,
.skill-detail-page__description-input:read-only {
  cursor: default;
}

.skill-detail-page__name-input::placeholder,
.skill-detail-page__description-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.skill-detail-page__settings-content,
.skill-detail-page__settings {
  min-width: 0;
}

.skill-detail-page__deployment-map {
  margin-block: 0;
}

.skill-detail-page__properties-card {
  min-width: 0;
}

.skill-detail-page__identity-value {
  min-width: 0;
  width: 100%;
}

.playground-skill-emoji-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.skill-detail-page__access-settings {
  min-width: 0;
}

.playground-content-body:has(
  > .playground-skills-page.playground-plugins-detail
  > .playground-skills-detail-page.file-resource-detail-page.is-code-tab
) {
  display: flex;
  flex-direction: column;
}

.playground-content-body
  > .playground-skills-page.playground-plugins-detail:has(
    > .playground-skills-detail-page.file-resource-detail-page.is-code-tab
  ) {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  flex: 1 1 0;
  overflow: hidden;
}

.playground-skills-page.playground-plugins-detail
  > .playground-skills-detail-page.file-resource-detail-page.is-code-tab {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 0;
  flex: 1 1 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 760px) {
  .skill-detail-page__identity {
    padding: 20px;
  }
}


.prompt-detail-page {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
}

.prompt-detail-page__content,
.prompt-detail-page__code,
.prompt-detail-page__code-workspace,
.prompt-detail-page__settings {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.prompt-detail-page__settings {
  overflow: auto;
}

.prompt-detail-page__settings-content,
.prompt-detail-page__settings-layout {
  min-width: 0;
}

.prompt-detail-page__storage-map {
  margin-block: 0;
}

.prompt-detail-page__access-settings,
.prompt-detail-page__access-table {
  width: 100%;
  min-width: 0;
}

.prompt-detail-header__version-label {
  margin-left: 4px;
}

.prompt-detail-page__content {
  flex: 1 1 0;
  align-self: stretch;
  gap: 0;
  overflow: hidden;
}

.prompt-detail-page__code {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  overflow: hidden;
}

.prompt-detail-page__metadata {
  box-sizing: border-box;
  flex: 0 0 auto;
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.prompt-detail-page__identity {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.prompt-detail-page__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.prompt-detail-page__identity-copy {
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prompt-detail-page__name-input,
.prompt-detail-page__description-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font: inherit;
  letter-spacing: 0;
}

.prompt-detail-page__name-input {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
}

.prompt-detail-page__description-input {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.prompt-detail-page__name-input::placeholder,
.prompt-detail-page__description-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.prompt-detail-page__code-workspace {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.prompt-detail-page__workspace {
  display: flex;
  width: 100%;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.prompt-detail-page__workspace,
.prompt-detail-page__workspace .platform-code-editor-workspace__editor,
.prompt-detail-page__workspace .platform-code-editor-workspace__editor-body,
.prompt-detail-page__workspace .platform-code-editor-workspace__empty,
.prompt-detail-page__workspace .platform-code-editor-workspace__markdown-editor {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.prompt-detail-page .platform-code-editor-workspace .platform-code-editor-workspace__markdown-editor.platform-instructions-editor.is-minimalistic-ui .platform-instructions-editor__header {
  padding-left: 20px;
  padding-right: 20px;
}

.prompt-detail-page__settings-sidebar {
  min-width: 0;
  padding-top: 0;
}

.prompt-detail-page__settings-sidebar-properties {
  min-width: 0;
}

.prompt-detail-page__settings-identity-row .platform-service-detail-page__property-value,
.prompt-detail-page__settings-owner-row .platform-service-detail-page__property-value {
  min-width: 0;
  overflow: visible;
}

.prompt-detail-page__settings-identity-row .prompt-detail-page__sidebar-identity,
.prompt-detail-page__settings-owner-row .prompt-detail-page__sidebar-identity {
  justify-content: flex-end;
}

.prompt-detail-page__settings-owner-row {
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.prompt-detail-page__start-thread-button.platform-button {
  width: 100%;
  margin-top: 12px;
}

.prompt-detail-page__sidebar-identity {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

.prompt-detail-page__sidebar-avatar {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 500;
}

.prompt-detail-page__sidebar-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prompt-detail-page__sidebar-identity-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* The tools route renders the detail shell directly into the content body. */
.playground-content-body:has(> .prompt-detail-page) {
  display: flex;
  flex-direction: column;
}

.playground-content-body:has(> .prompt-detail-page) > .prompt-detail-page {
  flex: 1 1 0;
  min-height: 0;
}

@media (max-width: 760px) {
  .prompt-detail-page__metadata {
    padding: 20px;
  }

  .prompt-detail-page__icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 10px;
  }
}


.playground-tag-plugin-detail-page {
  --resource-detail-section-gap: 42px;
}

.playground-tag-plugin-detail-page > .tag-detail-page__header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-detail-page__identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.tag-detail-page__identity-copy {
  min-width: 0;
}

.tag-detail-page__identity-title {
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-detail-page__identity-description {
  max-width: 760px;
  margin: 4px 0 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.playground-tag-plugin-detail-page > .tag-detail-page__tabs {
  overflow: visible;
}

.tag-detail-page__tabs .platform-detail-tab-bar__list {
  gap: 8px;
}

.tag-detail-page__tabs .platform-detail-tab-bar__tab {
  min-height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.52);
}

.tag-detail-page__tabs .platform-detail-tab-bar__tab:hover:not(:disabled) {
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.05);
}

.tag-detail-page__tabs .platform-detail-tab-bar__tab.is-active {
  color: #fff;
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.1);
}

.tag-detail-page__overview {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--resource-detail-section-gap, 42px);
}

.tag-detail-page__information-surface.platform-ui-card {
  padding: 24px;
}

.tag-detail-page__information-list {
  min-width: 0;
  margin: 0;
}

.tag-detail-page__information-row {
  min-width: 0;
  padding: 13px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-detail-page__information-row dt,
.tag-detail-page__information-row dd {
  min-width: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 400;
}

.tag-detail-page__information-row dt {
  color: rgba(255, 255, 255, 0.5);
}

.tag-detail-page__information-row dd {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-detail-page__information-row dd.is-monospace {
  color: rgba(255, 255, 255, 0.55);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.tag-detail-page__copy-value {
  min-width: 0;
  max-width: 100%;
  padding: 6px 9px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
  cursor: pointer;
}

.tag-detail-page__copy-value:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.tag-detail-page__function-access-labels {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tag-detail-page__included {
  margin-top: 32px;
}

.tag-detail-page__function-groups {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag-detail-page__function-group {
  min-width: 0;
}

.tag-detail-page__function-group-header {
  min-width: 0;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.tag-detail-page__function-list {
  min-width: 0;
}

.tag-detail-page__function-item {
  min-width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-detail-page__function-item:last-child {
  border-bottom: 0;
}

.tag-detail-page__function-item-trigger {
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding: 10px 0 10px 21px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

button.tag-detail-page__function-item-trigger {
  cursor: pointer;
}

button.tag-detail-page__function-item-trigger:hover {
  background: rgba(255, 255, 255, 0.025);
}

button.tag-detail-page__function-item-trigger:focus-visible {
  outline: 1px solid rgba(77, 163, 255, 0.9);
  outline-offset: -1px;
}

.tag-detail-page__function-item-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.075);
}

.tag-detail-page__function-item-icon > :is(img, svg) {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.tag-detail-page__function-item-copy {
  min-width: 0;
  flex: 1 1 auto;
  display: block;
}

.tag-detail-page__function-item-title {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-detail-page__function-item-description {
  display: block;
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-detail-page__function-item-chevron {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.45);
  transition: transform 160ms ease;
}

.tag-detail-page__function-item.is-expanded
  .tag-detail-page__function-item-chevron {
  transform: rotate(90deg);
}

.tag-detail-page__schema-panel[hidden] {
  display: none;
}

.tag-detail-page__schema-panel {
  padding: 0 0 12px 69px;
}

.tag-detail-page__schema-panel-inner {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: #050505;
}

.tag-detail-page__schema-toolbar {
  min-height: 34px;
  padding: 0 8px 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  line-height: 1;
  text-transform: lowercase;
}

.tag-detail-page__schema-toolbar .platform-icon-button {
  color: rgba(255, 255, 255, 0.55);
}

.tag-detail-page__schema-code {
  box-sizing: border-box;
  width: 100%;
  max-height: min(520px, 60vh);
  margin: 0;
  padding: 14px 16px;
  overflow: auto;
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  line-height: 1.6;
  tab-size: 2;
  white-space: pre;
}

.tag-detail-page__schema-line {
  display: block;
  min-height: 1.6em;
}

.tag-detail-page__schema-token.is-property {
  color: #8dc5ff;
}

.tag-detail-page__schema-token.is-string {
  color: #f0a36d;
}

.tag-detail-page__schema-token.is-literal {
  color: #35e8bb;
}

.tag-detail-page__schema-token.is-number {
  color: #c28cff;
}

.tag-detail-page__authentication {
  min-width: 0;
}

.tag-detail-page__section-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.tag-detail-page__authentication-surface.platform-ui-card {
  min-height: 360px;
  padding: 20px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(255, 255, 255, 0.035);
}

.tag-detail-page__authentication-surface.has-custom-content {
  min-height: 240px;
}

.tag-detail-page__authentication-surface.is-connected {
  min-height: 0;
}

.tag-detail-page__authentication-surface > .tag-detail-page__section-title {
  margin-bottom: 20px;
}

.tag-detail-page__authentication-content {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-detail-page__authentication-empty {
  flex: 1 1 auto;
  min-height: 240px;
}

.tag-detail-page__credential-list {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-detail-page__credential-row {
  min-width: 0;
  min-height: 64px;
  padding: 8px 0 2px;
  display: grid;
  grid-template-columns:
    minmax(240px, 1.35fr)
    minmax(110px, 0.55fr)
    minmax(240px, 1fr)
    32px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-detail-page__credential-row:last-child {
  border-bottom: 0;
}

.tag-detail-page__credential-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tag-detail-page__credential-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.tag-detail-page__credential-icon > svg {
  width: 18px;
  height: 18px;
}

.tag-detail-page__credential-copy {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 2px;
}

.tag-detail-page__credential-name {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-detail-page__credential-account {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-detail-page__credential-method {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-detail-page__credential-status {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tag-detail-page__credential-checked {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag-detail-page__credential-menu-anchor {
  justify-self: end;
}

.tag-detail-page__credential-menu {
  --platform-popup-radius: 12px;
  right: 0;
  left: auto;
}

.tag-detail-page__credential-menu-placeholder {
  width: 32px;
  height: 32px;
}

.tag-detail-page__credential-modal .platform-modal-header__media {
  padding: 24px 56px 20px 24px;
  padding-top: 0;
  padding-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.tag-detail-page__credential-modal .platform-modal-header__close,
.tag-detail-page__credential-modal .platform-modal-header__close:hover,
.tag-detail-page__credential-modal .platform-modal-header__close:focus-visible {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.tag-detail-page__credential-modal-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 400;
}

.tag-detail-page__credential-modal-icon.connection-identity-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  aspect-ratio: 1;
  flex: 0 0 48px;
}

.tag-detail-page__credential-form {
  min-width: 0;
}

.tag-detail-page__credential-form label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.tag-detail-page__credential-form input,
.tag-detail-page__credential-form textarea {
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
  font-size: 12px;
}

.tag-detail-page__credential-form textarea {
  min-height: 132px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.45;
}

.tag-detail-page__credential-form input:focus,
.tag-detail-page__credential-form textarea:focus {
  border-color: #4da3ff;
  box-shadow: 0 0 0 1px #4da3ff;
}

.tag-detail-page__credential-form input::placeholder,
.tag-detail-page__credential-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.tag-detail-page__credential-provider-field {
  margin-top: 20px;
}

.tag-detail-page__credential-form p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
}

.tag-detail-page__credential-form .tag-detail-page__credential-form-error {
  color: #f87171;
}

@media (max-width: 760px) {
  .playground-tag-plugin-detail-page > .tag-detail-page__header {
    align-items: stretch;
  }

  .tag-detail-page__identity-description {
    white-space: normal;
  }

  .tag-detail-page__authentication-surface.platform-ui-card {
    min-height: 300px;
    padding: 20px;
  }

  .tag-detail-page__authentication-surface.is-connected {
    min-height: 0;
  }

  .tag-detail-page__credential-row {
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 12px;
  }

  .tag-detail-page__credential-method,
  .tag-detail-page__credential-status {
    grid-column: 1;
    padding-left: 50px;
  }

  .tag-detail-page__credential-menu-anchor,
  .tag-detail-page__credential-menu-placeholder {
    grid-column: 2;
    grid-row: 1;
  }

  .tag-detail-page__information-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .tag-detail-page__information-row dd {
    white-space: normal;
  }

  .tag-detail-page__information-surface.platform-ui-card {
    padding: 18px;
  }
}


.external-agent-triggers {
  display: flex;
  flex-direction: column;
  gap: 42px;
  min-width: 0;
  padding-bottom: 24px;
}

.external-agent-triggers__intro,
.external-agent-triggers__section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.external-agent-triggers__intro {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.external-agent-triggers__intro h1,
.external-agent-triggers__section-header h2 {
  margin: 0;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0;
}

.external-agent-triggers__intro h1 {
  font-size: 18px;
}

.external-agent-triggers__section-header h2 {
  font-size: 14px;
}

.external-agent-triggers__intro p,
.external-agent-triggers__section-header p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.5;
}

.external-agent-triggers__health {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.external-agent-triggers__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.external-agent-triggers__section-header {
  align-items: center;
}

.external-agent-triggers__message {
  margin-top: -24px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.075);
  font-size: 12px;
}

.external-agent-triggers__message.is-error {
  color: #ff8a89;
  background: rgba(245, 59, 58, 0.12);
}

.external-agent-triggers__text-action {
  max-width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: #4da3ff;
  background: transparent;
  font: inherit;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.external-agent-triggers__profile-option {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.external-agent-triggers__profile-option img,
.external-agent-triggers__profile-option svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 50%;
  object-fit: cover;
}

.external-agent-triggers__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.external-agent-triggers__field {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.external-agent-triggers__field input {
  box-sizing: border-box;
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  outline: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  font: inherit;
}

.external-agent-triggers__field input:focus {
  border-color: rgba(77, 163, 255, 0.75);
}

.external-agent-triggers__field small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  line-height: 1.4;
}

.external-agent-triggers__checks {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.external-agent-triggers__checks legend {
  width: 100%;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.external-agent-triggers__checks label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.external-agent-triggers__setup {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.external-agent-triggers__setup-guidance,
.external-agent-triggers__secret-warning {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.5;
}

.external-agent-triggers__secret-warning {
  color: #f3c969;
}

.external-agent-triggers__copy-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
}

.external-agent-triggers__copy-field > span {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.external-agent-triggers__copy-field code {
  min-width: 0;
  padding: 10px 12px;
  overflow: auto;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .external-agent-triggers__intro,
  .external-agent-triggers__section-header {
    align-items: stretch;
    flex-direction: column;
  }

  .external-agent-triggers__form {
    grid-template-columns: 1fr;
  }
}


.platform-resource-access-table__title {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.platform-resource-access-table .platform-data-table__toolbar-title {
  overflow: visible;
}

.platform-resource-access-table__principal {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.platform-resource-access-table__principal-avatar {
  display: inline-flex;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}

.platform-resource-access-table__principal-avatar-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platform-resource-access-table__principal-avatar-fallback {
  font-size: 8px;
  font-weight: 400;
  line-height: 1;
}

.platform-resource-access-table__principal-name {
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.platform-resource-access-settings
  .platform-resource-access-settings__role-page {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.platform-resource-access-settings
  .platform-resource-access-settings__role-sidebar,
.platform-resource-access-settings
  .platform-resource-access-settings__permission-page {
  min-width: 0;
}

.platform-resource-access-settings
  .platform-resource-access-settings__role-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 640px) {
  .platform-resource-access-settings
    .platform-resource-access-settings__role-page {
    grid-template-columns: minmax(0, 1fr);
  }
}


.platform-plan-gate-modal__body {
  display: grid;
  gap: 14px;
}

.platform-plan-gate-modal__plan {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.platform-plan-gate-modal__plan-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.platform-plan-gate-modal__eyebrow,
.platform-plan-gate-modal__current-plan,
.platform-plan-gate-modal__plan-description {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.platform-plan-gate-modal__plan-name {
  margin-top: 2px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
}

.platform-plan-gate-modal__price {
  flex: 0 0 auto;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.platform-plan-gate-modal__plan-description,
.platform-plan-gate-modal__current-plan,
.platform-plan-gate-modal__error {
  margin: 0;
}

.platform-plan-gate-modal__usage {
  width: fit-content;
  padding: 3px 7px;
  border-radius: 5px;
  background: rgba(77, 163, 255, 0.12);
  color: #8cc1ff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
}

.platform-plan-gate-modal__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-plan-gate-modal__feature {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.platform-plan-gate-modal__feature svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #85df7b;
}

.platform-plan-gate-modal__current-plan span {
  color: rgba(255, 255, 255, 0.78);
}

.platform-plan-gate-modal__error {
  color: #ff8584;
  font-size: 12px;
  line-height: 1.5;
}

.platform-plan-gate-modal__loader {
  animation: platform-plan-gate-spin 0.8s linear infinite;
}

@keyframes platform-plan-gate-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 640px) {
  .platform-plan-gate-modal__features {
    grid-template-columns: 1fr;
  }
}

