.icon-copy {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  flex-shrink: 0;
  vertical-align: middle;
  padding: 0;
}

.icon-copy:hover {
  background: var(--panel-soft);
  color: var(--text);
}


.icon-copy svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copy-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-width: 0;
}

.copy-inline__label {
  color: var(--muted);
  font-size: 12.5px;
  white-space: nowrap;
}

.copy-inline__value {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--subtle);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.modal-title-row h3 {
  margin: 0;
}

.modal-title-row + .modal-lead {
  margin-top: 0;
}

.api-key-reveal .icon-copy,
.copy-field-row .icon-copy {
  flex: 0 0 auto;
}

.copy-field-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.copy-field-row .api-key-input,
.copy-field-row input[readonly] {
  flex: 1;
  min-width: 0;
}

.gs-code-wrap {
  position: relative;
  min-width: 0;
  max-width: 100%;
}

.gs-code-wrap .gs-code {
  max-width: 100%;
}

.gs-code-wrap .icon-copy {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  background: rgba(17, 17, 17, 0.72);
  color: #e8e8e8;
}

.gs-code-wrap .icon-copy:hover {
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
}

.person-email-row,
.key-prefix-cell {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  min-width: 0;
}

.person-email-row .person-email,
.key-prefix-cell .key-prefix-btn {
  min-width: 0;
}

.runtime-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.runtime-summary-head .runtime-summary-label {
  margin: 0;
}

.page-meta--ids {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.4;
}

.page-meta--ids .page-meta-sep {
  color: var(--muted);
}

.pickwise-copy-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 100;
  transform: translateX(-50%) translateY(8px);
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.pickwise-copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.policy-pack-modals .modal-card-wide .modal-actions {
  justify-content: flex-end;
  gap: 8px;
}

