.eapi-endpoint-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(100%, 640px);
  margin: 12px 0 4px;
  padding: 7px 10px;
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  color: #64748b;
  font-size: 13px;
  line-height: 1.3;
}

.eapi-endpoint-label {
  color: #334155;
  font-weight: 600;
  white-space: nowrap;
}

.eapi-endpoint-default {
  padding: 2px 6px;
  border-radius: 6px;
  background: #ecfeff;
  color: #0f766e;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.eapi-endpoint-divider {
  width: 1px;
  height: 14px;
  background: #cbd5e1;
}

.eapi-endpoint-url {
  color: #475569;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.eapi-endpoint-action {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
}

.eapi-endpoint-action:hover,
.eapi-endpoint-action:focus-visible {
  background: #f1f5f9;
  color: #0f766e;
  outline: none;
}

.eapi-endpoint-action svg {
  width: 15px;
  height: 15px;
}

.eapi-endpoint-action[data-copied="true"] {
  color: #0f766e;
}

@media (max-width: 720px) {
  .eapi-endpoint-strip {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 7px;
  }

  .eapi-endpoint-url {
    flex: 1 1 100%;
  }
}
